Home | History | Annotate | Download | only in util

Lines Matching defs:inst

33     private static TempStorage inst = null;

40 if (inst != null) {
41 inst = (TempStorage) Class.forName(clazz).newInstance();
49 if (inst == null) {
50 inst = new SimpleTempStorage();
63 return inst;
66 public static void setInstance(TempStorage inst) {
67 if (inst == null) {
68 throw new NullPointerException("inst");
70 TempStorage.inst = inst;