]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkStructuredGridWriter.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkStructuredGridWriter.java
1 // java wrapper for vtkStructuredGridWriter object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkStructuredGridWriter extends vtkDataWriter
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 GetInput_2();
19   public vtkStructuredGrid GetInput() {
20     long temp = GetInput_2();
21
22     if (temp == 0) return null;
23     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native long GetInput_3(int id0);
27   public vtkStructuredGrid GetInput(int id0) {
28     long temp = GetInput_3(id0);
29
30     if (temp == 0) return null;
31     return (vtkStructuredGrid)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
32 }
33
34   private native void SetWriteExtent_4(boolean id0);
35   public void SetWriteExtent(boolean id0)
36     { SetWriteExtent_4(id0); }
37
38   private native boolean GetWriteExtent_5();
39   public boolean GetWriteExtent()
40     { return GetWriteExtent_5(); }
41
42   private native void WriteExtentOn_6();
43   public void WriteExtentOn()
44     { WriteExtentOn_6(); }
45
46   private native void WriteExtentOff_7();
47   public void WriteExtentOff()
48     { WriteExtentOff_7(); }
49
50   public vtkStructuredGridWriter() { super(); }
51
52   public vtkStructuredGridWriter(long id) { super(id); }
53   public native long   VTKInit();
54
55 }