(String className, String methodName, Object[] args)
| 350 | } |
| 351 | |
| 352 | public static Object invokeStaticMethod(String className, String methodName, Object[] args) { |
| 353 | Class c = RT.classForName(className); |
| 354 | return invokeStaticMethod(c, methodName, args); |
| 355 | } |
| 356 | |
| 357 | public static Object invokeStaticMethod(Class c, String methodName, Object[] args) { |
| 358 | if(methodName.equals("new")) |
no test coverage detected