Edit: Answered - error was method wasn\'t static
I\'m used the Singleton Design Pattern
public class Singleton { private static final Singleton I
This one:
Singleton singleton = Singleton.getInstance();
should work. This is how you call static methods in Java. And the getInstance() method is declared as static. Are you sure you are using the very same Singleton class? Or maybe you have imported a class called the same in some other package.
getInstance()
static
Singleton