]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkDataSetReader.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkDataSetReader.java
1 // java wrapper for vtkDataSetReader object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkDataSetReader extends vtkDataReader
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 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 GetStructuredPointsOutput_5();
43   public vtkStructuredPoints GetStructuredPointsOutput() {
44     long temp = GetStructuredPointsOutput_5();
45
46     if (temp == 0) return null;
47     return (vtkStructuredPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
48 }
49
50   private native long GetStructuredGridOutput_6();
51   public vtkStructuredGrid GetStructuredGridOutput() {
52     long temp = GetStructuredGridOutput_6();
53
54     if (temp == 0) return null;
55     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   private native long GetUnstructuredGridOutput_7();
59   public vtkUnstructuredGrid GetUnstructuredGridOutput() {
60     long temp = GetUnstructuredGridOutput_7();
61
62     if (temp == 0) return null;
63     return (vtkUnstructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
64 }
65
66   private native long GetRectilinearGridOutput_8();
67   public vtkRectilinearGrid GetRectilinearGridOutput() {
68     long temp = GetRectilinearGridOutput_8();
69
70     if (temp == 0) return null;
71     return (vtkRectilinearGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
72 }
73
74   private native int ReadOutputType_9();
75   public int ReadOutputType()
76     { return ReadOutputType_9(); }
77
78   private native int ReadMetaDataSimple_10(String id0,vtkInformation id1);
79   public int ReadMetaDataSimple(String id0,vtkInformation id1)
80     { return ReadMetaDataSimple_10(id0,id1); }
81
82   private native int ReadMeshSimple_11(String id0,vtkDataObject id1);
83   public int ReadMeshSimple(String id0,vtkDataObject id1)
84     { return ReadMeshSimple_11(id0,id1); }
85
86   public vtkDataSetReader() { super(); }
87
88   public vtkDataSetReader(long id) { super(id); }
89   public native long   VTKInit();
90
91 }