]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkProgrammableFilter.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkProgrammableFilter.java
1 // java wrapper for vtkProgrammableFilter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkProgrammableFilter extends vtkPassInputTypeAlgorithm
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 SetExecuteMethod_2(Object id0, String id1);
19   public void SetExecuteMethod(Object id0, String id1)
20     { SetExecuteMethod_2(id0,id1); }
21
22   private native long GetPolyDataInput_3();
23   public vtkPolyData GetPolyDataInput() {
24     long temp = GetPolyDataInput_3();
25
26     if (temp == 0) return null;
27     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native long GetStructuredPointsInput_4();
31   public vtkStructuredPoints GetStructuredPointsInput() {
32     long temp = GetStructuredPointsInput_4();
33
34     if (temp == 0) return null;
35     return (vtkStructuredPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetStructuredGridInput_5();
39   public vtkStructuredGrid GetStructuredGridInput() {
40     long temp = GetStructuredGridInput_5();
41
42     if (temp == 0) return null;
43     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native long GetUnstructuredGridInput_6();
47   public vtkUnstructuredGrid GetUnstructuredGridInput() {
48     long temp = GetUnstructuredGridInput_6();
49
50     if (temp == 0) return null;
51     return (vtkUnstructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native long GetRectilinearGridInput_7();
55   public vtkRectilinearGrid GetRectilinearGridInput() {
56     long temp = GetRectilinearGridInput_7();
57
58     if (temp == 0) return null;
59     return (vtkRectilinearGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native long GetGraphInput_8();
63   public vtkGraph GetGraphInput() {
64     long temp = GetGraphInput_8();
65
66     if (temp == 0) return null;
67     return (vtkGraph)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
68 }
69
70   private native long GetMoleculeInput_9();
71   public vtkMolecule GetMoleculeInput() {
72     long temp = GetMoleculeInput_9();
73
74     if (temp == 0) return null;
75     return (vtkMolecule)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native long GetTableInput_10();
79   public vtkTable GetTableInput() {
80     long temp = GetTableInput_10();
81
82     if (temp == 0) return null;
83     return (vtkTable)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
84 }
85
86   private native void SetCopyArrays_11(boolean id0);
87   public void SetCopyArrays(boolean id0)
88     { SetCopyArrays_11(id0); }
89
90   private native boolean GetCopyArrays_12();
91   public boolean GetCopyArrays()
92     { return GetCopyArrays_12(); }
93
94   private native void CopyArraysOn_13();
95   public void CopyArraysOn()
96     { CopyArraysOn_13(); }
97
98   private native void CopyArraysOff_14();
99   public void CopyArraysOff()
100     { CopyArraysOff_14(); }
101
102   public vtkProgrammableFilter() { super(); }
103
104   public vtkProgrammableFilter(long id) { super(id); }
105   public native long   VTKInit();
106
107 }