1 16 17 package org.springframework.beans.factory; 18 19 public class KnowsIfInstantiated { 20 21 private static boolean instantiated; 22 23 public static void clearInstantiationRecord() { 24 instantiated = false; 25 } 26 27 public static boolean wasInstantiated() { 28 return instantiated; 29 } 30 31 public KnowsIfInstantiated() { 32 instantiated = true; 33 } 34 35 } 36 | Popular Tags |