]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkUnstructuredGridBaseAlgorithm.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkUnstructuredGridBaseAlgorithm.java
1 // java wrapper for vtkUnstructuredGridBaseAlgorithm object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkUnstructuredGridBaseAlgorithm extends vtkAlgorithm
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 long GetOutput_2();
19   public vtkUnstructuredGridBase GetOutput() {
20     long temp = GetOutput_2();
21
22     if (temp == 0) return null;
23     return (vtkUnstructuredGridBase)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetOutput_3(int id0);
27   public vtkUnstructuredGridBase GetOutput(int id0) {
28     long temp = GetOutput_3(id0);
29
30     if (temp == 0) return null;
31     return (vtkUnstructuredGridBase)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void SetOutput_4(vtkDataObject id0);
35   public void SetOutput(vtkDataObject id0)
36     { SetOutput_4(id0); }
37
38   private native void SetInputData_5(vtkDataObject id0);
39   public void SetInputData(vtkDataObject id0)
40     { SetInputData_5(id0); }
41
42   private native void SetInputData_6(int id0,vtkDataObject id1);
43   public void SetInputData(int id0,vtkDataObject id1)
44     { SetInputData_6(id0,id1); }
45
46   private native void AddInputData_7(vtkDataObject id0);
47   public void AddInputData(vtkDataObject id0)
48     { AddInputData_7(id0); }
49
50   private native void AddInputData_8(int id0,vtkDataObject id1);
51   public void AddInputData(int id0,vtkDataObject id1)
52     { AddInputData_8(id0,id1); }
53
54   public vtkUnstructuredGridBaseAlgorithm() { super(); }
55
56   public vtkUnstructuredGridBaseAlgorithm(long id) { super(id); }
57   public native long   VTKInit();
58
59 }