(Object aObject)
| 2478 | return aObject == null ? "" : aObject.getClass().getName().substring(aObject.getClass().getName().lastIndexOf(".")+1); |
| 2479 | } |
| 2480 | public static String getLowercaseClass(Object aObject) { |
| 2481 | return aObject == null ? "" : aObject.getClass().getName().substring(aObject.getClass().getName().lastIndexOf(".")+1).toLowerCase(); |
| 2482 | } |
| 2483 | |
| 2484 | public static Field getPublicField(Object aObject, String aField) { |
| 2485 | Field rField = null; |
no test coverage detected