Implement a singelton
Anonymous
public class Singleton { private static Singleton instance; private Singleton () {} public static synchronized Singleton getInstance() { if(instance==null) { instance = new Singleton(); } return instance; }
Check out your Company Bowl for anonymous work chats.