]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkInformationIterator.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkInformationIterator.java
1 // java wrapper for vtkInformationIterator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkInformationIterator 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 SetInformation_2(vtkInformation id0);
19   public void SetInformation(vtkInformation id0)
20     { SetInformation_2(id0); }
21
22   private native long GetInformation_3();
23   public vtkInformation GetInformation() {
24     long temp = GetInformation_3();
25
26     if (temp == 0) return null;
27     return (vtkInformation)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native void SetInformationWeak_4(vtkInformation id0);
31   public void SetInformationWeak(vtkInformation id0)
32     { SetInformationWeak_4(id0); }
33
34   private native void InitTraversal_5();
35   public void InitTraversal()
36     { InitTraversal_5(); }
37
38   private native void GoToFirstItem_6();
39   public void GoToFirstItem()
40     { GoToFirstItem_6(); }
41
42   private native void GoToNextItem_7();
43   public void GoToNextItem()
44     { GoToNextItem_7(); }
45
46   private native int IsDoneWithTraversal_8();
47   public int IsDoneWithTraversal()
48     { return IsDoneWithTraversal_8(); }
49
50   private native long GetCurrentKey_9();
51   public vtkInformationKey GetCurrentKey() {
52     long temp = GetCurrentKey_9();
53
54     if (temp == 0) return null;
55     return (vtkInformationKey)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   public vtkInformationIterator() { super(); }
59
60   public vtkInformationIterator(long id) { super(id); }
61   public native long   VTKInit();
62
63 }