()
| 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; |
no test coverage detected