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