(Object aObject, String aField)
| 2509 | } |
| 2510 | |
| 2511 | public static Field getField(Object aObject, String aField) { |
| 2512 | Field rField = null; |
| 2513 | try { |
| 2514 | rField = aObject.getClass().getDeclaredField(aField); |
| 2515 | rField.setAccessible(T); |
| 2516 | } catch (Throwable e) {/*Do nothing*/} |
| 2517 | return rField; |
| 2518 | } |
| 2519 | |
| 2520 | public static Field getField(Class<?> aObject, String aField) { |
| 2521 | Field rField = null; |
no outgoing calls
no test coverage detected