| 103 | } |
| 104 | |
| 105 | AnyJavaMethod JavaClass::getStaticMethod(const char* name, |
| 106 | const Valdi::ValueFunctionSchema& functionSchema, |
| 107 | bool treatArrayAsList) const { |
| 108 | return doGetMethod(name, |
| 109 | true, |
| 110 | functionSchema.getReturnValue(), |
| 111 | functionSchema.getParameters(), |
| 112 | functionSchema.getParametersSize(), |
| 113 | treatArrayAsList); |
| 114 | } |
| 115 | |
| 116 | AnyJavaMethod JavaClass::getStaticMethod(const char* name, |
| 117 | const Valdi::ValueSchema& returnType, |
no test coverage detected