document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  *
  3.  * @author Kamil
  4.  * Implementacja wzorca projektowego Singleton w jÄ™zyku JAVA
  5.  */
  6. public class Singleton {
  7.    
  8.     private static class SingletonHolder{
  9.         public static final Singleton instance = new Singleton();
  10.     }
  11.    
  12.     private Singleton(){
  13.        
  14.     }
  15.    
  16.     public static Singleton getInstance(){
  17.         return SingletonHolder.instance;
  18.     }
  19. }
');