public class TestSingleton {

    TestSingleton instance;

    TestSingleton() {
    }

    public TestSingleton getInstance() {
        if (instance == null) {
            instance = new TestSingleton();
        }
        return instance;
    }

}