1 package test.guice; 2 3 public class ExampleSingleton implements ISingleton { 4 5 @Override doSomething()6 public void doSomething() { 7 // System.out.println("Doing something"); 8 } 9 10 } 11