]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkAnnotation.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkAnnotation.java
1 // java wrapper for vtkAnnotation object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkAnnotation 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 long GetSelection_2();
19   public vtkSelection GetSelection() {
20     long temp = GetSelection_2();
21
22     if (temp == 0) return null;
23     return (vtkSelection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native void SetSelection_3(vtkSelection id0);
27   public void SetSelection(vtkSelection id0)
28     { SetSelection_3(id0); }
29
30   private native long GetData_4(vtkInformation id0);
31   public vtkAnnotation GetData(vtkInformation id0) {
32     long temp = GetData_4(id0);
33
34     if (temp == 0) return null;
35     return (vtkAnnotation)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetData_5(vtkInformationVector id0,int id1);
39   public vtkAnnotation GetData(vtkInformationVector id0,int id1) {
40     long temp = GetData_5(id0,id1);
41
42     if (temp == 0) return null;
43     return (vtkAnnotation)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native long LABEL_6();
47   public vtkInformationStringKey LABEL() {
48     long temp = LABEL_6();
49
50     if (temp == 0) return null;
51     return (vtkInformationStringKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native long COLOR_7();
55   public vtkInformationDoubleVectorKey COLOR() {
56     long temp = COLOR_7();
57
58     if (temp == 0) return null;
59     return (vtkInformationDoubleVectorKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native long OPACITY_8();
63   public vtkInformationDoubleKey OPACITY() {
64     long temp = OPACITY_8();
65
66     if (temp == 0) return null;
67     return (vtkInformationDoubleKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
68 }
69
70   private native long ICON_INDEX_9();
71   public vtkInformationIntegerKey ICON_INDEX() {
72     long temp = ICON_INDEX_9();
73
74     if (temp == 0) return null;
75     return (vtkInformationIntegerKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native long ENABLE_10();
79   public vtkInformationIntegerKey ENABLE() {
80     long temp = ENABLE_10();
81
82     if (temp == 0) return null;
83     return (vtkInformationIntegerKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
84 }
85
86   private native long HIDE_11();
87   public vtkInformationIntegerKey HIDE() {
88     long temp = HIDE_11();
89
90     if (temp == 0) return null;
91     return (vtkInformationIntegerKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
92 }
93
94   private native long DATA_12();
95   public vtkInformationDataObjectKey DATA() {
96     long temp = DATA_12();
97
98     if (temp == 0) return null;
99     return (vtkInformationDataObjectKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
100 }
101
102   private native void Initialize_13();
103   public void Initialize()
104     { Initialize_13(); }
105
106   private native void ShallowCopy_14(vtkDataObject id0);
107   public void ShallowCopy(vtkDataObject id0)
108     { ShallowCopy_14(id0); }
109
110   private native void DeepCopy_15(vtkDataObject id0);
111   public void DeepCopy(vtkDataObject id0)
112     { DeepCopy_15(id0); }
113
114   private native int GetMTime_16();
115   public int GetMTime()
116     { return GetMTime_16(); }
117
118   public vtkAnnotation() { super(); }
119
120   public vtkAnnotation(long id) { super(id); }
121   public native long   VTKInit();
122
123 }