Actually if you make a little bit change in Eli's code you can achieve what you want to see. You can see the necessary changes below:
private static SimpleSingleton theInstance = new SimpleSingleton(); to public static SimpleSingleton theInstance = new SimpleSingleton();
SimpleSingleton s1 = SimpleSingleton.getInstance(); to SimpleSingleton s1 = SimpleSingleton.theInstance;
This is what you want to see; but not a good implementation regarding encapsulation issues!
I was writing this post but obviously Eli made it quicker than me