PageRenderTime 70ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

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

#
Java | 34 lines | 24 code | 10 blank | 0 comment | 1 complexity | df593e8b78d5746b61700151ca9d2b0a MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. import director_unroll.*;
  2. public class director_unroll_runme {
  3. static {
  4. try {
  5. System.loadLibrary("director_unroll");
  6. } catch (UnsatisfiedLinkError e) {
  7. 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);
  8. System.exit(1);
  9. }
  10. }
  11. public static void main(String argv[]) {
  12. director_unroll_MyFoo a = new director_unroll_MyFoo();
  13. Bar b = new Bar();
  14. b.set(a);
  15. Foo c = b.get();
  16. if (!c.ping().equals("director_unroll_MyFoo::ping()"))
  17. throw new RuntimeException ( "c.ping()" );
  18. }
  19. }
  20. class director_unroll_MyFoo extends Foo {
  21. public String ping() {
  22. return "director_unroll_MyFoo::ping()";
  23. }
  24. }