1 3 package jodd.introspector; 4 5 9 public class DefaultIntrospector { 10 11 14 public static ClassDescriptor lookup(Class type) { 15 return Introspector.DEFAULT.lookup(type); 16 } 17 18 21 public static ClassDescriptor register(Class type) { 22 return Introspector.DEFAULT.register(type); 23 } 24 25 28 public static void resetCache() { 29 Introspector.DEFAULT.reset(); 30 } 31 32 35 public static String getStatistics() { 36 return Introspector.DEFAULT.getStatistics(); 37 } 38 39 42 public static void setDefaultIntrospector(Introspector i) { 43 if (i != null) { 44 Introspector.DEFAULT = i; 45 } 46 } 47 48 49 } | Popular Tags |