Esempio n. 1
0
 public static UKeyHook getInstance(IKeyEventsListener escuchador)
 {
     if (instance == null)
     {
         instance = new UKeyHook(escuchador);
     }
     return(instance);
 }
Esempio n. 2
0
 private UKeyHook(IKeyEventsListener escuchador)
 {
     this.escuchador = escuchador;
     this.action     = new UKeyActions();
     init();
 }