(Object object, String methodName, Class[] paramTypes, Object... parameters)
| 21 | } |
| 22 | |
| 23 | public static Object invokeMethod(Object object, String methodName, Class[] paramTypes, Object... parameters) { |
| 24 | if (object == null) { |
| 25 | return null; |
| 26 | } |
| 27 | return invokeMethod(object, object.getClass(), methodName, paramTypes, parameters); |
| 28 | } |
| 29 | |
| 30 | public static Object invokeMethod(Object object, Class clazz, String methodName, Class[] paramTypes, Object... parameters) { |
| 31 | try { |
no outgoing calls
no test coverage detected