(Class<?> clazz, String name)
| 35 | } |
| 36 | |
| 37 | public static Object getStaticObject(Class<?> clazz, String name) throws NoSuchFieldException { |
| 38 | return getStaticObject(clazz, name, null); |
| 39 | } |
| 40 | |
| 41 | public static Object getStaticObject(Class<?> clazz, String name, Class<?> type) throws NoSuchFieldException { |
| 42 | Field f = findField(clazz, type, name); |
no test coverage detected