]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkCollectionIterator.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkCollectionIterator.java
1 // java wrapper for vtkCollectionIterator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkCollectionIterator 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 SetCollection_2(vtkCollection id0);
19   public void SetCollection(vtkCollection id0)
20     { SetCollection_2(id0); }
21
22   private native long GetCollection_3();
23   public vtkCollection GetCollection() {
24     long temp = GetCollection_3();
25
26     if (temp == 0) return null;
27     return (vtkCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void InitTraversal_4();
31   public void InitTraversal()
32     { InitTraversal_4(); }
33
34   private native void GoToFirstItem_5();
35   public void GoToFirstItem()
36     { GoToFirstItem_5(); }
37
38   private native void GoToNextItem_6();
39   public void GoToNextItem()
40     { GoToNextItem_6(); }
41
42   private native int IsDoneWithTraversal_7();
43   public int IsDoneWithTraversal()
44     { return IsDoneWithTraversal_7(); }
45
46   private native long GetCurrentObject_8();
47   public vtkObject GetCurrentObject() {
48     long temp = GetCurrentObject_8();
49
50     if (temp == 0) return null;
51     return (vtkObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   public vtkCollectionIterator() { super(); }
55
56   public vtkCollectionIterator(long id) { super(id); }
57   public native long   VTKInit();
58
59 }