]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkCellArray.java
Editor internal toolbar for Plant3D editor
[simantics/3d.git] / vtk / src / vtk / vtkCellArray.java
1 // java wrapper for vtkCellArray object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkCellArray 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 int Allocate_2(int id0,int id1);
19   public int Allocate(int id0,int id1)
20     { return Allocate_2(id0,id1); }
21
22   private native void Initialize_3();
23   public void Initialize()
24     { Initialize_3(); }
25
26   private native int GetNumberOfCells_4();
27   public int GetNumberOfCells()
28     { return GetNumberOfCells_4(); }
29
30   private native void SetNumberOfCells_5(int id0);
31   public void SetNumberOfCells(int id0)
32     { SetNumberOfCells_5(id0); }
33
34   private native int EstimateSize_6(int id0,int id1);
35   public int EstimateSize(int id0,int id1)
36     { return EstimateSize_6(id0,id1); }
37
38   private native void InitTraversal_7();
39   public void InitTraversal()
40     { InitTraversal_7(); }
41
42   private native int GetNextCell_8(vtkIdList id0);
43   public int GetNextCell(vtkIdList id0)
44     { return GetNextCell_8(id0); }
45
46   private native int GetSize_9();
47   public int GetSize()
48     { return GetSize_9(); }
49
50   private native int GetNumberOfConnectivityEntries_10();
51   public int GetNumberOfConnectivityEntries()
52     { return GetNumberOfConnectivityEntries_10(); }
53
54   private native void GetCell_11(int id0,vtkIdList id1);
55   public void GetCell(int id0,vtkIdList id1)
56     { GetCell_11(id0,id1); }
57
58   private native int InsertNextCell_12(vtkCell id0);
59   public int InsertNextCell(vtkCell id0)
60     { return InsertNextCell_12(id0); }
61
62   private native int InsertNextCell_13(vtkIdList id0);
63   public int InsertNextCell(vtkIdList id0)
64     { return InsertNextCell_13(id0); }
65
66   private native int InsertNextCell_14(int id0);
67   public int InsertNextCell(int id0)
68     { return InsertNextCell_14(id0); }
69
70   private native void InsertCellPoint_15(int id0);
71   public void InsertCellPoint(int id0)
72     { InsertCellPoint_15(id0); }
73
74   private native void UpdateCellCount_16(int id0);
75   public void UpdateCellCount(int id0)
76     { UpdateCellCount_16(id0); }
77
78   private native int GetInsertLocation_17(int id0);
79   public int GetInsertLocation(int id0)
80     { return GetInsertLocation_17(id0); }
81
82   private native int GetTraversalLocation_18();
83   public int GetTraversalLocation()
84     { return GetTraversalLocation_18(); }
85
86   private native void SetTraversalLocation_19(int id0);
87   public void SetTraversalLocation(int id0)
88     { SetTraversalLocation_19(id0); }
89
90   private native int GetTraversalLocation_20(int id0);
91   public int GetTraversalLocation(int id0)
92     { return GetTraversalLocation_20(id0); }
93
94   private native void ReverseCell_21(int id0);
95   public void ReverseCell(int id0)
96     { ReverseCell_21(id0); }
97
98   private native int GetMaxCellSize_22();
99   public int GetMaxCellSize()
100     { return GetMaxCellSize_22(); }
101
102   private native void SetCells_23(int id0,vtkIdTypeArray id1);
103   public void SetCells(int id0,vtkIdTypeArray id1)
104     { SetCells_23(id0,id1); }
105
106   private native void DeepCopy_24(vtkCellArray id0);
107   public void DeepCopy(vtkCellArray id0)
108     { DeepCopy_24(id0); }
109
110   private native long GetData_25();
111   public vtkIdTypeArray GetData() {
112     long temp = GetData_25();
113
114     if (temp == 0) return null;
115     return (vtkIdTypeArray)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
116 }
117
118   private native void Reset_26();
119   public void Reset()
120     { Reset_26(); }
121
122   private native void Squeeze_27();
123   public void Squeeze()
124     { Squeeze_27(); }
125
126   private native int GetActualMemorySize_28();
127   public int GetActualMemorySize()
128     { return GetActualMemorySize_28(); }
129
130   public vtkCellArray() { super(); }
131
132   public vtkCellArray(long id) { super(id); }
133   public native long   VTKInit();
134
135 }