]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkAbstractContextItem.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkAbstractContextItem.java
1 // java wrapper for vtkAbstractContextItem object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkAbstractContextItem extends vtkObject
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 boolean PaintChildren_4(vtkContext2D id0);
27   public boolean PaintChildren(vtkContext2D id0)
28     { return PaintChildren_4(id0); }
29
30   private native void ReleaseGraphicsResources_5();
31   public void ReleaseGraphicsResources()
32     { ReleaseGraphicsResources_5(); }
33
34   private native int AddItem_6(vtkAbstractContextItem id0);
35   public int AddItem(vtkAbstractContextItem id0)
36     { return AddItem_6(id0); }
37
38   private native boolean RemoveItem_7(vtkAbstractContextItem id0);
39   public boolean RemoveItem(vtkAbstractContextItem id0)
40     { return RemoveItem_7(id0); }
41
42   private native boolean RemoveItem_8(int id0);
43   public boolean RemoveItem(int id0)
44     { return RemoveItem_8(id0); }
45
46   private native long GetItem_9(int id0);
47   public vtkAbstractContextItem GetItem(int id0) {
48     long temp = GetItem_9(id0);
49
50     if (temp == 0) return null;
51     return (vtkAbstractContextItem)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native int GetItemIndex_10(vtkAbstractContextItem id0);
55   public int GetItemIndex(vtkAbstractContextItem id0)
56     { return GetItemIndex_10(id0); }
57
58   private native int GetNumberOfItems_11();
59   public int GetNumberOfItems()
60     { return GetNumberOfItems_11(); }
61
62   private native void ClearItems_12();
63   public void ClearItems()
64     { ClearItems_12(); }
65
66   private native int Raise_13(int id0);
67   public int Raise(int id0)
68     { return Raise_13(id0); }
69
70   private native int StackAbove_14(int id0,int id1);
71   public int StackAbove(int id0,int id1)
72     { return StackAbove_14(id0,id1); }
73
74   private native int Lower_15(int id0);
75   public int Lower(int id0)
76     { return Lower_15(id0); }
77
78   private native int StackUnder_16(int id0,int id1);
79   public int StackUnder(int id0,int id1)
80     { return StackUnder_16(id0,id1); }
81
82   private native void SetScene_17(vtkContextScene id0);
83   public void SetScene(vtkContextScene id0)
84     { SetScene_17(id0); }
85
86   private native long GetScene_18();
87   public vtkContextScene GetScene() {
88     long temp = GetScene_18();
89
90     if (temp == 0) return null;
91     return (vtkContextScene)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
92 }
93
94   private native void SetParent_19(vtkAbstractContextItem id0);
95   public void SetParent(vtkAbstractContextItem id0)
96     { SetParent_19(id0); }
97
98   private native long GetParent_20();
99   public vtkAbstractContextItem GetParent() {
100     long temp = GetParent_20();
101
102     if (temp == 0) return null;
103     return (vtkAbstractContextItem)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
104 }
105
106   private native boolean GetVisible_21();
107   public boolean GetVisible()
108     { return GetVisible_21(); }
109
110   private native void SetVisible_22(boolean id0);
111   public void SetVisible(boolean id0)
112     { SetVisible_22(id0); }
113
114   private native boolean GetInteractive_23();
115   public boolean GetInteractive()
116     { return GetInteractive_23(); }
117
118   private native void SetInteractive_24(boolean id0);
119   public void SetInteractive(boolean id0)
120     { SetInteractive_24(id0); }
121
122   public vtkAbstractContextItem() { super(); }
123
124   public vtkAbstractContextItem(long id) { super(id); }
125
126 }