URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.jni/] [martin.java] - Rev 781
Go to most recent revision | Compare with Previous | Blame | View Log
// Test case from Martin Kahlert <martin.kahlert@infineon.com> public class martin { public native void myNative(String s); public void myJava(String s) { s = s + ", Java"; System.out.println(s); } public static void main(String args[]) { martin x = new martin(); x.myJava("Hello"); x.myNative("Hello, Java (from C)"); x.myJava("Goodbye"); } static { System.loadLibrary("martin"); } }
Go to most recent revision | Compare with Previous | Blame | View Log