]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkIdListCollection.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkIdListCollection.java
1 // java wrapper for vtkIdListCollection object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkIdListCollection 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(vtkIdList id0);
19   public void AddItem(vtkIdList id0)
20     { AddItem_2(id0); }
21
22   private native long GetNextItem_3();
23   public vtkIdList GetNextItem() {
24     long temp = GetNextItem_3();
25
26     if (temp == 0) return null;
27     return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native long GetItem_4(int id0);
31   public vtkIdList GetItem(int id0) {
32     long temp = GetItem_4(id0);
33
34     if (temp == 0) return null;
35     return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   public vtkIdListCollection() { super(); }
39
40   public vtkIdListCollection(long id) { super(id); }
41   public native long   VTKInit();
42
43 }