MCPcopy Create free account
hub / github.com/ddf-project/DDF / getMethod

Method getMethod

core/src/main/java/io/ddf/util/Utils.java:435–445  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

433 }
434
435 public Method getMethod() {
436 if (mMethod == null) try {
437 // Re-parse it if necessary, e.g., after serdes when we have lost mMethod since it's not serializable
438 this.parse(mClassHashMethodName, mDefaultMethodName, mMethodArgTypes);
439
440 } catch (DDFException e) {
441 sLog.warn(String.format("%s: Unable to parse() in getMethod()", this.getClass().getSimpleName()), e);
442 }
443
444 return mMethod;
445 }
446
447 protected void setMethod(Method theMethod) {
448 mMethod = theMethod;

Callers 2

classInvokeMethod · 0.95
instanceInvokeMethod · 0.95

Calls 1

parseMethod · 0.95

Tested by

no test coverage detected