]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkStructuredGridReader.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkStructuredGridReader.java
1 // java wrapper for vtkStructuredGridReader object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkStructuredGridReader 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 vtkStructuredGrid GetOutput() {
20     long temp = GetOutput_2();
21
22     if (temp == 0) return null;
23     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetOutput_3(int id0);
27   public vtkStructuredGrid GetOutput(int id0) {
28     long temp = GetOutput_3(id0);
29
30     if (temp == 0) return null;
31     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void SetOutput_4(vtkStructuredGrid id0);
35   public void SetOutput(vtkStructuredGrid id0)
36     { SetOutput_4(id0); }
37
38   private native int ReadMetaDataSimple_5(String id0,vtkInformation id1);
39   public int ReadMetaDataSimple(String id0,vtkInformation id1)
40     { return ReadMetaDataSimple_5(id0,id1); }
41
42   private native int ReadMeshSimple_6(String id0,vtkDataObject id1);
43   public int ReadMeshSimple(String id0,vtkDataObject id1)
44     { return ReadMeshSimple_6(id0,id1); }
45
46   public vtkStructuredGridReader() { super(); }
47
48   public vtkStructuredGridReader(long id) { super(id); }
49   public native long   VTKInit();
50
51 }