]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkDataSetAlgorithm.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkDataSetAlgorithm.java
1 // java wrapper for vtkDataSetAlgorithm object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkDataSetAlgorithm 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 vtkDataSet GetOutput() {
20     long temp = GetOutput_2();
21
22     if (temp == 0) return null;
23     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetOutput_3(int id0);
27   public vtkDataSet GetOutput(int id0) {
28     long temp = GetOutput_3(id0);
29
30     if (temp == 0) return null;
31     return (vtkDataSet)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native long GetInput_4();
35   public vtkDataObject GetInput() {
36     long temp = GetInput_4();
37
38     if (temp == 0) return null;
39     return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
40 }
41
42   private native long GetPolyDataOutput_5();
43   public vtkPolyData GetPolyDataOutput() {
44     long temp = GetPolyDataOutput_5();
45
46     if (temp == 0) return null;
47     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long GetStructuredPointsOutput_6();
51   public vtkStructuredPoints GetStructuredPointsOutput() {
52     long temp = GetStructuredPointsOutput_6();
53
54     if (temp == 0) return null;
55     return (vtkStructuredPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native long GetImageDataOutput_7();
59   public vtkImageData GetImageDataOutput() {
60     long temp = GetImageDataOutput_7();
61
62     if (temp == 0) return null;
63     return (vtkImageData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
64 }
65
66   private native long GetStructuredGridOutput_8();
67   public vtkStructuredGrid GetStructuredGridOutput() {
68     long temp = GetStructuredGridOutput_8();
69
70     if (temp == 0) return null;
71     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
72 }
73
74   private native long GetUnstructuredGridOutput_9();
75   public vtkUnstructuredGrid GetUnstructuredGridOutput() {
76     long temp = GetUnstructuredGridOutput_9();
77
78     if (temp == 0) return null;
79     return (vtkUnstructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
80 }
81
82   private native long GetRectilinearGridOutput_10();
83   public vtkRectilinearGrid GetRectilinearGridOutput() {
84     long temp = GetRectilinearGridOutput_10();
85
86     if (temp == 0) return null;
87     return (vtkRectilinearGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
88 }
89
90   private native void SetInputData_11(vtkDataObject id0);
91   public void SetInputData(vtkDataObject id0)
92     { SetInputData_11(id0); }
93
94   private native void SetInputData_12(int id0,vtkDataObject id1);
95   public void SetInputData(int id0,vtkDataObject id1)
96     { SetInputData_12(id0,id1); }
97
98   private native void SetInputData_13(vtkDataSet id0);
99   public void SetInputData(vtkDataSet id0)
100     { SetInputData_13(id0); }
101
102   private native void SetInputData_14(int id0,vtkDataSet id1);
103   public void SetInputData(int id0,vtkDataSet id1)
104     { SetInputData_14(id0,id1); }
105
106   private native void AddInputData_15(vtkDataObject id0);
107   public void AddInputData(vtkDataObject id0)
108     { AddInputData_15(id0); }
109
110   private native void AddInputData_16(vtkDataSet id0);
111   public void AddInputData(vtkDataSet id0)
112     { AddInputData_16(id0); }
113
114   private native void AddInputData_17(int id0,vtkDataSet id1);
115   public void AddInputData(int id0,vtkDataSet id1)
116     { AddInputData_17(id0,id1); }
117
118   private native void AddInputData_18(int id0,vtkDataObject id1);
119   public void AddInputData(int id0,vtkDataObject id1)
120     { AddInputData_18(id0,id1); }
121
122   public vtkDataSetAlgorithm() { super(); }
123
124   public vtkDataSetAlgorithm(long id) { super(id); }
125   public native long   VTKInit();
126
127 }