| 84 | } |
| 85 | |
| 86 | AnyJavaMethod JavaClass::getMethod(const char* name, |
| 87 | const Valdi::ValueFunctionSchema& functionSchema, |
| 88 | bool treatArrayAsList) const { |
| 89 | return doGetMethod(name, |
| 90 | false, |
| 91 | functionSchema.getReturnValue(), |
| 92 | functionSchema.getParameters(), |
| 93 | functionSchema.getParametersSize(), |
| 94 | treatArrayAsList); |
| 95 | } |
| 96 | |
| 97 | AnyJavaMethod JavaClass::getMethod(const char* name, |
| 98 | const Valdi::ValueSchema& returnType, |
no test coverage detected