]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkUndirectedGraph.java
Perform view direction switching via vtkCameraAndSelectorAction
[simantics/3d.git] / vtk / src / vtk / vtkUndirectedGraph.java
1 // java wrapper for vtkUndirectedGraph object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkUndirectedGraph extends vtkGraph
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 int GetDataObjectType_2();
19   public int GetDataObjectType()
20     { return GetDataObjectType_2(); }
21
22   private native int GetInDegree_3(int id0);
23   public int GetInDegree(int id0)
24     { return GetInDegree_3(id0); }
25
26   private native void GetInEdge_4(int id0,int id1,vtkGraphEdge id2);
27   public void GetInEdge(int id0,int id1,vtkGraphEdge id2)
28     { GetInEdge_4(id0,id1,id2); }
29
30   private native long GetData_5(vtkInformation id0);
31   public vtkUndirectedGraph GetData(vtkInformation id0) {
32     long temp = GetData_5(id0);
33
34     if (temp == 0) return null;
35     return (vtkUndirectedGraph)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetData_6(vtkInformationVector id0,int id1);
39   public vtkUndirectedGraph GetData(vtkInformationVector id0,int id1) {
40     long temp = GetData_6(id0,id1);
41
42     if (temp == 0) return null;
43     return (vtkUndirectedGraph)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native void GetInEdges_7(int id0,vtkInEdgeIterator id1);
47   public void GetInEdges(int id0,vtkInEdgeIterator id1)
48     { GetInEdges_7(id0,id1); }
49
50   private native boolean IsStructureValid_8(vtkGraph id0);
51   public boolean IsStructureValid(vtkGraph id0)
52     { return IsStructureValid_8(id0); }
53
54   public vtkUndirectedGraph() { super(); }
55
56   public vtkUndirectedGraph(long id) { super(id); }
57   public native long   VTKInit();
58
59 }