(Object aObject)
| 2475 | |
| 2476 | public static class Reflection { |
| 2477 | public static String getClassName(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 | } |