Edit: Answered - error was method wasn\'t static
I\'m used the Singleton Design Pattern
public class Singleton { private static final Singleton I
There is nothing wrong in using
Singleton singleton = Singleton.getInstance(); // error - non-static method cannot be referenced from a static context
This is the way to get the singleton object form the class. There must me something else. Please post some more details