]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGenericDataSet.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkGenericDataSet.java
1 // java wrapper for vtkGenericDataSet object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGenericDataSet extends vtkDataObject
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 int GetNumberOfPoints_2();
19   public int GetNumberOfPoints()
20     { return GetNumberOfPoints_2(); }
21
22   private native int GetNumberOfCells_3(int id0);
23   public int GetNumberOfCells(int id0)
24     { return GetNumberOfCells_3(id0); }
25
26   private native int GetCellDimension_4();
27   public int GetCellDimension()
28     { return GetCellDimension_4(); }
29
30   private native void GetCellTypes_5(vtkCellTypes id0);
31   public void GetCellTypes(vtkCellTypes id0)
32     { GetCellTypes_5(id0); }
33
34   private native long NewCellIterator_6(int id0);
35   public vtkGenericCellIterator NewCellIterator(int id0) {
36     long temp = NewCellIterator_6(id0);
37
38     if (temp == 0) return null;
39     return (vtkGenericCellIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native long NewBoundaryIterator_7(int id0,int id1);
43   public vtkGenericCellIterator NewBoundaryIterator(int id0,int id1) {
44     long temp = NewBoundaryIterator_7(id0,id1);
45
46     if (temp == 0) return null;
47     return (vtkGenericCellIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long NewPointIterator_8();
51   public vtkGenericPointIterator NewPointIterator() {
52     long temp = NewPointIterator_8();
53
54     if (temp == 0) return null;
55     return (vtkGenericPointIterator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native void FindPoint_9(double id0[],vtkGenericPointIterator id1);
59   public void FindPoint(double id0[],vtkGenericPointIterator id1)
60     { FindPoint_9(id0,id1); }
61
62   private native int GetMTime_10();
63   public int GetMTime()
64     { return GetMTime_10(); }
65
66   private native void ComputeBounds_11();
67   public void ComputeBounds()
68     { ComputeBounds_11(); }
69
70   private native void GetBounds_12(double id0[]);
71   public void GetBounds(double id0[])
72     { GetBounds_12(id0); }
73
74   private native void GetCenter_13(double id0[]);
75   public void GetCenter(double id0[])
76     { GetCenter_13(id0); }
77
78   private native double GetLength_14();
79   public double GetLength()
80     { return GetLength_14(); }
81
82   private native long GetAttributes_15();
83   public vtkGenericAttributeCollection GetAttributes() {
84     long temp = GetAttributes_15();
85
86     if (temp == 0) return null;
87     return (vtkGenericAttributeCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
88 }
89
90   private native long GetAttributes_16(int id0);
91   public vtkDataSetAttributes GetAttributes(int id0) {
92     long temp = GetAttributes_16(id0);
93
94     if (temp == 0) return null;
95     return (vtkDataSetAttributes)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
96 }
97
98   private native void SetTessellator_17(vtkGenericCellTessellator id0);
99   public void SetTessellator(vtkGenericCellTessellator id0)
100     { SetTessellator_17(id0); }
101
102   private native long GetTessellator_18();
103   public vtkGenericCellTessellator GetTessellator() {
104     long temp = GetTessellator_18();
105
106     if (temp == 0) return null;
107     return (vtkGenericCellTessellator)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
108 }
109
110   private native int GetActualMemorySize_19();
111   public int GetActualMemorySize()
112     { return GetActualMemorySize_19(); }
113
114   private native int GetDataObjectType_20();
115   public int GetDataObjectType()
116     { return GetDataObjectType_20(); }
117
118   private native int GetEstimatedSize_21();
119   public int GetEstimatedSize()
120     { return GetEstimatedSize_21(); }
121
122   private native long GetData_22(vtkInformation id0);
123   public vtkGenericDataSet GetData(vtkInformation id0) {
124     long temp = GetData_22(id0);
125
126     if (temp == 0) return null;
127     return (vtkGenericDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
128 }
129
130   private native long GetData_23(vtkInformationVector id0,int id1);
131   public vtkGenericDataSet GetData(vtkInformationVector id0,int id1) {
132     long temp = GetData_23(id0,id1);
133
134     if (temp == 0) return null;
135     return (vtkGenericDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
136 }
137
138   public vtkGenericDataSet() { super(); }
139
140   public vtkGenericDataSet(long id) { super(id); }
141
142 }