swig/Examples/test-suite/java/director_thread_runme.java
William S Fulton 425faf1666 director thread runtime test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9243 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2006-08-11 22:32:19 +00:00

35 lines
700 B
Java

import director_thread.*;
import java.lang.reflect.*;
public class director_thread_runme {
static {
try {
System.loadLibrary("director_thread");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);
}
}
public static void main(String argv[]) {
Derived d = new Derived();
d.run();
if (d.getVal() >= 0) {
throw new RuntimeException("Failed. Val: " + d.getVal());
}
}
}
class Derived extends Foo {
Derived() {
super();
}
public void do_foo() {
setVal(getVal() - 1);
}
}