001package headfirst.singleton.subclass;
002
003public class CoolerSingleton extends Singleton {
004 // useful instance variables here
005 protected static Singleton uniqueInstance;
006
007 private CoolerSingleton() {
008 super();
009 }
010
011 // useful methods here
012}