PageRenderTime 197ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1.3.35/Examples/test-suite/java/imports_runme.java

#
Java | 24 lines | 16 code | 6 blank | 2 comment | 0 complexity | 9a4296b8c63fe28686eb8eb56704ecdd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. // This is the imports runtime testcase. It shows that the %import directive
  2. // is working correctly
  3. import imports.*;
  4. public class imports_runme {
  5. static {
  6. try {
  7. System.loadLibrary("imports_a");
  8. System.loadLibrary("imports_b");
  9. } catch (UnsatisfiedLinkError e) {
  10. 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);
  11. System.exit(1);
  12. }
  13. }
  14. public static void main(String argv[]) {
  15. B b = new B();
  16. b.hello(); //call member function in A which is in a different SWIG generated library.
  17. }
  18. }