Edit: Answered - error was method wasn\'t static
I\'m used the Singleton Design Pattern
public class Singleton { private static final Singleton I
since getInstance() method is "static" and instance field too, yo can use Singleton.getInstance(); Without creating new exeple of class. Thihs is the poit of singletone