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