]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkHyperTreeCursor.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkHyperTreeCursor.java
1 // java wrapper for vtkHyperTreeCursor object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkHyperTreeCursor 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 SetTree_2(vtkHyperTree id0);
19   public void SetTree(vtkHyperTree id0)
20     { SetTree_2(id0); }
21
22   private native long GetTree_3();
23   public vtkHyperTree GetTree() {
24     long temp = GetTree_3();
25
26     if (temp == 0) return null;
27     return (vtkHyperTree)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native int GetVertexId_4();
31   public int GetVertexId()
32     { return GetVertexId_4(); }
33
34   private native boolean IsLeaf_5();
35   public boolean IsLeaf()
36     { return IsLeaf_5(); }
37
38   private native boolean IsRoot_6();
39   public boolean IsRoot()
40     { return IsRoot_6(); }
41
42   private native int GetLevel_7();
43   public int GetLevel()
44     { return GetLevel_7(); }
45
46   private native int GetChildIndex_8();
47   public int GetChildIndex()
48     { return GetChildIndex_8(); }
49
50   private native void ToRoot_9();
51   public void ToRoot()
52     { ToRoot_9(); }
53
54   private native void ToParent_10();
55   public void ToParent()
56     { ToParent_10(); }
57
58   private native void ToChild_11(int id0);
59   public void ToChild(int id0)
60     { ToChild_11(id0); }
61
62   private native void ToSameVertex_12(vtkHyperTreeCursor id0);
63   public void ToSameVertex(vtkHyperTreeCursor id0)
64     { ToSameVertex_12(id0); }
65
66   private native boolean IsEqual_13(vtkHyperTreeCursor id0);
67   public boolean IsEqual(vtkHyperTreeCursor id0)
68     { return IsEqual_13(id0); }
69
70   private native long Clone_14();
71   public vtkHyperTreeCursor Clone() {
72     long temp = Clone_14();
73
74     if (temp == 0) return null;
75     return (vtkHyperTreeCursor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native int SameTree_15(vtkHyperTreeCursor id0);
79   public int SameTree(vtkHyperTreeCursor id0)
80     { return SameTree_15(id0); }
81
82   private native int GetNumberOfChildren_16();
83   public int GetNumberOfChildren()
84     { return GetNumberOfChildren_16(); }
85
86   private native int GetDimension_17();
87   public int GetDimension()
88     { return GetDimension_17(); }
89
90   public vtkHyperTreeCursor() { super(); }
91
92   public vtkHyperTreeCursor(long id) { super(id); }
93
94 }