(String fullName, String paramSpecsStr)
| 60 | private Type returnType_; |
| 61 | |
| 62 | public Invoker(String fullName, String paramSpecsStr) |
| 63 | throws ClassNotFoundException, FrontendException, SecurityException, NoSuchMethodException { |
| 64 | this(fullName, paramSpecsStr, "true"); |
| 65 | } |
| 66 | |
| 67 | public Invoker(String fullName, String paramSpecsStr, String isStatic) |
| 68 | throws ClassNotFoundException, FrontendException, SecurityException, NoSuchMethodException { |
nothing calls this directly
no test coverage detected