]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkUnstructuredGridBase.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkUnstructuredGridBase.java
1 // java wrapper for vtkUnstructuredGridBase object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkUnstructuredGridBase extends vtkPointSet
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 GetDataObjectType_2();
19   public int GetDataObjectType()
20     { return GetDataObjectType_2(); }
21
22   private native void Allocate_3(int id0,int id1);
23   public void Allocate(int id0,int id1)
24     { Allocate_3(id0,id1); }
25
26   private native void DeepCopy_4(vtkDataObject id0);
27   public void DeepCopy(vtkDataObject id0)
28     { DeepCopy_4(id0); }
29
30   private native int InsertNextCell_5(int id0,vtkIdList id1);
31   public int InsertNextCell(int id0,vtkIdList id1)
32     { return InsertNextCell_5(id0,id1); }
33
34   private native void GetIdsOfCellsOfType_6(int id0,vtkIdTypeArray id1);
35   public void GetIdsOfCellsOfType(int id0,vtkIdTypeArray id1)
36     { GetIdsOfCellsOfType_6(id0,id1); }
37
38   private native int IsHomogeneous_7();
39   public int IsHomogeneous()
40     { return IsHomogeneous_7(); }
41
42   private native long GetData_8(vtkInformation id0);
43   public vtkUnstructuredGridBase GetData(vtkInformation id0) {
44     long temp = GetData_8(id0);
45
46     if (temp == 0) return null;
47     return (vtkUnstructuredGridBase)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long GetData_9(vtkInformationVector id0,int id1);
51   public vtkUnstructuredGridBase GetData(vtkInformationVector id0,int id1) {
52     long temp = GetData_9(id0,id1);
53
54     if (temp == 0) return null;
55     return (vtkUnstructuredGridBase)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   public vtkUnstructuredGridBase() { super(); }
59
60   public vtkUnstructuredGridBase(long id) { super(id); }
61
62 }