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