]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkEdgeListIterator.java
Add back explicit loading of jawt.dll.
[simantics/3d.git] / vtk / src / vtk / vtkEdgeListIterator.java
1 // java wrapper for vtkEdgeListIterator object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkEdgeListIterator extends vtkObject
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 GetGraph_2();
19   public vtkGraph GetGraph() {
20     long temp = GetGraph_2();
21
22     if (temp == 0) return null;
23     return (vtkGraph)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
24 }
25
26   private native void SetGraph_3(vtkGraph id0);
27   public void SetGraph(vtkGraph id0)
28     { SetGraph_3(id0); }
29
30   private native long NextGraphEdge_4();
31   public vtkGraphEdge NextGraphEdge() {
32     long temp = NextGraphEdge_4();
33
34     if (temp == 0) return null;
35     return (vtkGraphEdge)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native boolean HasNext_5();
39   public boolean HasNext()
40     { return HasNext_5(); }
41
42   public vtkEdgeListIterator() { super(); }
43
44   public vtkEdgeListIterator(long id) { super(id); }
45   public native long   VTKInit();
46
47 }