summaryrefslogtreecommitdiff
path: root/Examples/test-suite/java/template_templated_constructors_runme.java
blob: cd3f31d2121e08026de3b7dcd797c8063a3cf4ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

import template_templated_constructors.*;

public class template_templated_constructors_runme {

  static {
    try {
	System.loadLibrary("template_templated_constructors");
    } 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[]) {
    TConstructor1 t1 = new TConstructor1(123);
    TConstructor2 t2a = new TConstructor2();
    TConstructor2 t2b = new TConstructor2(123);

    TClass1Int tc1 = new TClass1Int(123.4);
    TClass2Int tc2a = new TClass2Int();
    TClass2Int tc2b = new TClass2Int(123.4);

  }
}