swig/Examples/test-suite/java/java_throws_runme.java
Dave Beazley 12a43edc2d The great merge
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2002-11-30 22:01:28 +00:00

46 lines
1.2 KiB
Java

import java_throws.*;
public class java_throws_runme {
static {
try {
System.loadLibrary("java_throws");
} 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[])
{
// Check the exception classes in the main typemaps
boolean pass = false;
// This won't compile unless all of these exceptions are in the throw clause
try {
short s = java_throws.full_of_exceptions(10);
}
catch (ClassNotFoundException e) {}
catch (NoSuchFieldException e) { pass = true; }
catch (InstantiationException e) {}
catch (CloneNotSupportedException e) {}
catch (IllegalAccessException e) {}
if (!pass) {
System.err.println("Test 1 failed");
System.exit(1);
}
// Check the exception class in the throw typemap
try {
java_throws.throw_spec_function(100);
}
catch (IllegalAccessException e) { pass = true; }
if (!pass) {
System.err.println("Test 2 failed");
System.exit(1);
}
}
}