]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSelection.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkSelection.java
1 // java wrapper for vtkSelection object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSelection extends vtkDataObject
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 Initialize_2();
19   public void Initialize()
20     { Initialize_2(); }
21
22   private native int GetDataObjectType_3();
23   public int GetDataObjectType()
24     { return GetDataObjectType_3(); }
25
26   private native int GetNumberOfNodes_4();
27   public int GetNumberOfNodes()
28     { return GetNumberOfNodes_4(); }
29
30   private native long GetNode_5(int id0);
31   public vtkSelectionNode GetNode(int id0) {
32     long temp = GetNode_5(id0);
33
34     if (temp == 0) return null;
35     return (vtkSelectionNode)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetNode_6(String id0);
39   public vtkSelectionNode GetNode(String id0) {
40     long temp = GetNode_6(id0);
41
42     if (temp == 0) return null;
43     return (vtkSelectionNode)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native String AddNode_7(vtkSelectionNode id0);
47   public String AddNode(vtkSelectionNode id0)
48     { return AddNode_7(id0); }
49
50   private native void SetNode_8(String id0,vtkSelectionNode id1);
51   public void SetNode(String id0,vtkSelectionNode id1)
52     { SetNode_8(id0,id1); }
53
54   private native String GetNodeNameAtIndex_9(int id0);
55   public String GetNodeNameAtIndex(int id0)
56     { return GetNodeNameAtIndex_9(id0); }
57
58   private native void RemoveNode_10(int id0);
59   public void RemoveNode(int id0)
60     { RemoveNode_10(id0); }
61
62   private native void RemoveNode_11(String id0);
63   public void RemoveNode(String id0)
64     { RemoveNode_11(id0); }
65
66   private native void RemoveNode_12(vtkSelectionNode id0);
67   public void RemoveNode(vtkSelectionNode id0)
68     { RemoveNode_12(id0); }
69
70   private native void RemoveAllNodes_13();
71   public void RemoveAllNodes()
72     { RemoveAllNodes_13(); }
73
74   private native void SetExpression_14(String id0);
75   public void SetExpression(String id0)
76     { SetExpression_14(id0); }
77
78   private native String GetExpression_15();
79   public String GetExpression()
80     { return GetExpression_15(); }
81
82   private native void DeepCopy_16(vtkDataObject id0);
83   public void DeepCopy(vtkDataObject id0)
84     { DeepCopy_16(id0); }
85
86   private native void ShallowCopy_17(vtkDataObject id0);
87   public void ShallowCopy(vtkDataObject id0)
88     { ShallowCopy_17(id0); }
89
90   private native void Union_18(vtkSelection id0);
91   public void Union(vtkSelection id0)
92     { Union_18(id0); }
93
94   private native void Union_19(vtkSelectionNode id0);
95   public void Union(vtkSelectionNode id0)
96     { Union_19(id0); }
97
98   private native void Subtract_20(vtkSelection id0);
99   public void Subtract(vtkSelection id0)
100     { Subtract_20(id0); }
101
102   private native void Subtract_21(vtkSelectionNode id0);
103   public void Subtract(vtkSelectionNode id0)
104     { Subtract_21(id0); }
105
106   private native int GetMTime_22();
107   public int GetMTime()
108     { return GetMTime_22(); }
109
110   private native void Dump_23();
111   public void Dump()
112     { Dump_23(); }
113
114   private native long GetData_24(vtkInformation id0);
115   public vtkSelection GetData(vtkInformation id0) {
116     long temp = GetData_24(id0);
117
118     if (temp == 0) return null;
119     return (vtkSelection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
120 }
121
122   private native long GetData_25(vtkInformationVector id0,int id1);
123   public vtkSelection GetData(vtkInformationVector id0,int id1) {
124     long temp = GetData_25(id0,id1);
125
126     if (temp == 0) return null;
127     return (vtkSelection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
128 }
129
130   public vtkSelection() { super(); }
131
132   public vtkSelection(long id) { super(id); }
133   public native long   VTKInit();
134
135 }