libConsole/Console.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Thu, 16 Apr 2009 12:49:12 +0200
changeset 49 77094ec383cf
child 55 2a20d0184041
permissions -rw-r--r--
libConsole: a java native interface example * getch: unbuffered character input committer: Markus Bröker <mbroeker@largo.homelinux.org>

public class Console {
    public static native int getch ();
    static {
        System.loadLibrary ("Console");
    }
}