]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkPointSetAlgorithm.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkPointSetAlgorithm.java
1 // java wrapper for vtkPointSetAlgorithm object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkPointSetAlgorithm 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 vtkPointSet GetOutput() {
20     long temp = GetOutput_2();
21
22     if (temp == 0) return null;
23     return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetOutput_3(int id0);
27   public vtkPointSet GetOutput(int id0) {
28     long temp = GetOutput_3(id0);
29
30     if (temp == 0) return null;
31     return (vtkPointSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetPolyDataOutput_4();
35   public vtkPolyData GetPolyDataOutput() {
36     long temp = GetPolyDataOutput_4();
37
38     if (temp == 0) return null;
39     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native long GetStructuredGridOutput_5();
43   public vtkStructuredGrid GetStructuredGridOutput() {
44     long temp = GetStructuredGridOutput_5();
45
46     if (temp == 0) return null;
47     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long GetUnstructuredGridOutput_6();
51   public vtkUnstructuredGrid GetUnstructuredGridOutput() {
52     long temp = GetUnstructuredGridOutput_6();
53
54     if (temp == 0) return null;
55     return (vtkUnstructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native void SetInputData_7(vtkDataObject id0);
59   public void SetInputData(vtkDataObject id0)
60     { SetInputData_7(id0); }
61
62   private native void SetInputData_8(int id0,vtkDataObject id1);
63   public void SetInputData(int id0,vtkDataObject id1)
64     { SetInputData_8(id0,id1); }
65
66   private native void SetInputData_9(vtkPointSet id0);
67   public void SetInputData(vtkPointSet id0)
68     { SetInputData_9(id0); }
69
70   private native void SetInputData_10(int id0,vtkPointSet id1);
71   public void SetInputData(int id0,vtkPointSet id1)
72     { SetInputData_10(id0,id1); }
73
74   private native void AddInputData_11(vtkDataObject id0);
75   public void AddInputData(vtkDataObject id0)
76     { AddInputData_11(id0); }
77
78   private native void AddInputData_12(vtkPointSet id0);
79   public void AddInputData(vtkPointSet id0)
80     { AddInputData_12(id0); }
81
82   private native void AddInputData_13(int id0,vtkPointSet id1);
83   public void AddInputData(int id0,vtkPointSet id1)
84     { AddInputData_13(id0,id1); }
85
86   private native void AddInputData_14(int id0,vtkDataObject id1);
87   public void AddInputData(int id0,vtkDataObject id1)
88     { AddInputData_14(id0,id1); }
89
90   private native long GetInput_15();
91   public vtkDataObject GetInput() {
92     long temp = GetInput_15();
93
94     if (temp == 0) return null;
95     return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
96 }
97
98   public vtkPointSetAlgorithm() { super(); }
99
100   public vtkPointSetAlgorithm(long id) { super(id); }
101   public native long   VTKInit();
102
103 }