]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkImageAppend.java
PipeRun reverse action
[simantics/3d.git] / vtk / src / vtk / vtkImageAppend.java
1 // java wrapper for vtkImageAppend object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkImageAppend extends vtkThreadedImageAlgorithm
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 void ReplaceNthInputConnection_2(int id0,vtkAlgorithmOutput id1);
19   public void ReplaceNthInputConnection(int id0,vtkAlgorithmOutput id1)
20     { ReplaceNthInputConnection_2(id0,id1); }
21
22   private native void SetInputData_3(int id0,vtkDataObject id1);
23   public void SetInputData(int id0,vtkDataObject id1)
24     { SetInputData_3(id0,id1); }
25
26   private native void SetInputData_4(vtkDataObject id0);
27   public void SetInputData(vtkDataObject id0)
28     { SetInputData_4(id0); }
29
30   private native long GetInput_5(int id0);
31   public vtkDataObject GetInput(int id0) {
32     long temp = GetInput_5(id0);
33
34     if (temp == 0) return null;
35     return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetInput_6();
39   public vtkDataObject GetInput() {
40     long temp = GetInput_6();
41
42     if (temp == 0) return null;
43     return (vtkDataObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native int GetNumberOfInputs_7();
47   public int GetNumberOfInputs()
48     { return GetNumberOfInputs_7(); }
49
50   private native void SetAppendAxis_8(int id0);
51   public void SetAppendAxis(int id0)
52     { SetAppendAxis_8(id0); }
53
54   private native int GetAppendAxis_9();
55   public int GetAppendAxis()
56     { return GetAppendAxis_9(); }
57
58   private native void SetPreserveExtents_10(int id0);
59   public void SetPreserveExtents(int id0)
60     { SetPreserveExtents_10(id0); }
61
62   private native int GetPreserveExtents_11();
63   public int GetPreserveExtents()
64     { return GetPreserveExtents_11(); }
65
66   private native void PreserveExtentsOn_12();
67   public void PreserveExtentsOn()
68     { PreserveExtentsOn_12(); }
69
70   private native void PreserveExtentsOff_13();
71   public void PreserveExtentsOff()
72     { PreserveExtentsOff_13(); }
73
74   public vtkImageAppend() { super(); }
75
76   public vtkImageAppend(long id) { super(id); }
77   public native long   VTKInit();
78
79 }