(Object bean,
Method readMethod)
| 46 | } |
| 47 | |
| 48 | private static Object readMethod(Object bean, |
| 49 | Method readMethod) throws InvocationTargetException, IllegalAccessException { |
| 50 | return readMethod.invoke(bean); |
| 51 | } |
| 52 | |
| 53 | private static void writeMethod(Object bean, Method writeMethod, |
| 54 | Object value) throws InvocationTargetException, IllegalAccessException { |
no outgoing calls
no test coverage detected