]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPlotBag.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkPlotBag.java
1 // java wrapper for vtkPlotBag object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPlotBag extends vtkPlotPoints
8 {
9
10   private native int IsTypeOf_0(String id0);
11   public int IsTypeOf(String id0)
12     { return IsTypeOf_0(id0); }
13
14   private native int IsA_1(String id0);
15   public int IsA(String id0)
16     { return IsA_1(id0); }
17
18   private native void Update_2();
19   public void Update()
20     { Update_2(); }
21
22   private native boolean Paint_3(vtkContext2D id0);
23   public boolean Paint(vtkContext2D id0)
24     { return Paint_3(id0); }
25
26   private native long GetLabels_4();
27   public vtkStringArray GetLabels() {
28     long temp = GetLabels_4();
29
30     if (temp == 0) return null;
31     return (vtkStringArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void SetInputData_5(vtkTable id0);
35   public void SetInputData(vtkTable id0)
36     { SetInputData_5(id0); }
37
38   private native void SetInputData_6(vtkTable id0,String id1,String id2);
39   public void SetInputData(vtkTable id0,String id1,String id2)
40     { SetInputData_6(id0,id1,id2); }
41
42   private native void SetInputData_7(vtkTable id0,String id1,String id2,String id3);
43   public void SetInputData(vtkTable id0,String id1,String id2,String id3)
44     { SetInputData_7(id0,id1,id2,id3); }
45
46   private native void SetInputData_8(vtkTable id0,int id1,int id2,int id3);
47   public void SetInputData(vtkTable id0,int id1,int id2,int id3)
48     { SetInputData_8(id0,id1,id2,id3); }
49
50   private native void SetBagVisible_9(boolean id0);
51   public void SetBagVisible(boolean id0)
52     { SetBagVisible_9(id0); }
53
54   private native boolean GetBagVisible_10();
55   public boolean GetBagVisible()
56     { return GetBagVisible_10(); }
57
58   private native void SetLinePen_11(vtkPen id0);
59   public void SetLinePen(vtkPen id0)
60     { SetLinePen_11(id0); }
61
62   private native long GetLinePen_12();
63   public vtkPen GetLinePen() {
64     long temp = GetLinePen_12();
65
66     if (temp == 0) return null;
67     return (vtkPen)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
68 }
69
70   private native void SetPointPen_13(vtkPen id0);
71   public void SetPointPen(vtkPen id0)
72     { SetPointPen_13(id0); }
73
74   private native long GetPointPen_14();
75   public vtkPen GetPointPen() {
76     long temp = GetPointPen_14();
77
78     if (temp == 0) return null;
79     return (vtkPen)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   public vtkPlotBag() { super(); }
83
84   public vtkPlotBag(long id) { super(id); }
85   public native long   VTKInit();
86
87 }