director thread runtime test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9243 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
d8e5a42bbb
commit
8a3dc91543
1 changed files with 35 additions and 0 deletions
35
SWIG/Examples/test-suite/java/director_thread_runme.java
Normal file
35
SWIG/Examples/test-suite/java/director_thread_runme.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue