martin.out: New file.

* libjava.jni/martin.out: New file.
	* libjava.jni/martin.c: New file.
	* libjava.jni/martin.java: New file.

From-SVN: r39286
This commit is contained in:
Tom Tromey 2001-01-26 22:41:41 +00:00 committed by Tom Tromey
parent 66cce54da0
commit d0815622ea
4 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,21 @@
// 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");
}
}