]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkProgrammableSource.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkProgrammableSource.java
1 // java wrapper for vtkProgrammableSource object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkProgrammableSource extends vtkDataObjectAlgorithm
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 GetPolyDataOutput_3();
23   public vtkPolyData GetPolyDataOutput() {
24     long temp = GetPolyDataOutput_3();
25
26     if (temp == 0) return null;
27     return (vtkPolyData)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native long GetStructuredPointsOutput_4();
31   public vtkStructuredPoints GetStructuredPointsOutput() {
32     long temp = GetStructuredPointsOutput_4();
33
34     if (temp == 0) return null;
35     return (vtkStructuredPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetStructuredGridOutput_5();
39   public vtkStructuredGrid GetStructuredGridOutput() {
40     long temp = GetStructuredGridOutput_5();
41
42     if (temp == 0) return null;
43     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native long GetUnstructuredGridOutput_6();
47   public vtkUnstructuredGrid GetUnstructuredGridOutput() {
48     long temp = GetUnstructuredGridOutput_6();
49
50     if (temp == 0) return null;
51     return (vtkUnstructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native long GetRectilinearGridOutput_7();
55   public vtkRectilinearGrid GetRectilinearGridOutput() {
56     long temp = GetRectilinearGridOutput_7();
57
58     if (temp == 0) return null;
59     return (vtkRectilinearGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native long GetGraphOutput_8();
63   public vtkGraph GetGraphOutput() {
64     long temp = GetGraphOutput_8();
65
66     if (temp == 0) return null;
67     return (vtkGraph)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
68 }
69
70   private native long GetMoleculeOutput_9();
71   public vtkMolecule GetMoleculeOutput() {
72     long temp = GetMoleculeOutput_9();
73
74     if (temp == 0) return null;
75     return (vtkMolecule)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
76 }
77
78   private native long GetTableOutput_10();
79   public vtkTable GetTableOutput() {
80     long temp = GetTableOutput_10();
81
82     if (temp == 0) return null;
83     return (vtkTable)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
84 }
85
86   public vtkProgrammableSource() { super(); }
87
88   public vtkProgrammableSource(long id) { super(id); }
89   public native long   VTKInit();
90
91 }