]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkSocketCollection.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkSocketCollection.java
1 // java wrapper for vtkSocketCollection object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkSocketCollection extends vtkCollection
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 AddItem_2(vtkSocket id0);
19   public void AddItem(vtkSocket id0)
20     { AddItem_2(id0); }
21
22   private native int SelectSockets_3(int id0);
23   public int SelectSockets(int id0)
24     { return SelectSockets_3(id0); }
25
26   private native long GetLastSelectedSocket_4();
27   public vtkSocket GetLastSelectedSocket() {
28     long temp = GetLastSelectedSocket_4();
29
30     if (temp == 0) return null;
31     return (vtkSocket)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void ReplaceItem_5(int id0,vtkObject id1);
35   public void ReplaceItem(int id0,vtkObject id1)
36     { ReplaceItem_5(id0,id1); }
37
38   private native void RemoveItem_6(int id0);
39   public void RemoveItem(int id0)
40     { RemoveItem_6(id0); }
41
42   private native void RemoveItem_7(vtkObject id0);
43   public void RemoveItem(vtkObject id0)
44     { RemoveItem_7(id0); }
45
46   private native void RemoveAllItems_8();
47   public void RemoveAllItems()
48     { RemoveAllItems_8(); }
49
50   public vtkSocketCollection() { super(); }
51
52   public vtkSocketCollection(long id) { super(id); }
53   public native long   VTKInit();
54
55 }