PageRenderTime 38ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/test-suite/java/template_classes_runme.java

#
Java | 25 lines | 16 code | 7 blank | 2 comment | 0 complexity | 74afdf87bdd8d0653c2e85144bbc58f1 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. // This is the template_classes runtime testcase. It checks that SWIG handles a templated
  2. // class used by another templated class, in particular that the proxy classes can be used.
  3. import template_classes.*;
  4. public class template_classes_runme {
  5. static {
  6. try {
  7. System.loadLibrary("template_classes");
  8. } catch (UnsatisfiedLinkError e) {
  9. 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);
  10. System.exit(1);
  11. }
  12. }
  13. public static void main(String argv[]) {
  14. RectangleInt rectint = new RectangleInt();
  15. PointInt pi = rectint.getPoint();
  16. int x = pi.getX();
  17. }
  18. }