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