
public class Singleton {

	private static Singleton instance = new Singleton();
	
	private Singleton(){}
	
	// Only one instance is allowed, and this
	// method returns it
	public static Singleton getInstance() {
		return instance;
	}
	
}
