Package ImplementacionTeclado

Examples of ImplementacionTeclado.KeyboardHook


public class DriverTeclado implements KeyboardEventListener
{
  public static void main( String args[] )
  {
                System.out.println("entra");
    KeyboardHook kh = new KeyboardHook();
                System.out.println("despues");
    kh.addEventListener( new DriverTeclado() );
    BufferedReader br = new BufferedReader( new InputStreamReader( System.in ) );
               // System.out.println("hola");
    try{
      br.readLine();
                    //    System.out.println("try");
View Full Code Here

TOP

Related Classes of ImplementacionTeclado.KeyboardHook

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.