]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkGeoSource.java
Revised native library loading for VTK
[simantics/3d.git] / vtk / src / vtk / vtkGeoSource.java
1 // java wrapper for vtkGeoSource object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkGeoSource 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 boolean FetchRoot_2(vtkGeoTreeNode id0);
19   public boolean FetchRoot(vtkGeoTreeNode id0)
20     { return FetchRoot_2(id0); }
21
22   private native boolean FetchChild_3(vtkGeoTreeNode id0,int id1,vtkGeoTreeNode id2);
23   public boolean FetchChild(vtkGeoTreeNode id0,int id1,vtkGeoTreeNode id2)
24     { return FetchChild_3(id0,id1,id2); }
25
26   private native void RequestChildren_4(vtkGeoTreeNode id0);
27   public void RequestChildren(vtkGeoTreeNode id0)
28     { RequestChildren_4(id0); }
29
30   private native long GetRequestedNodes_5(vtkGeoTreeNode id0);
31   public vtkCollection GetRequestedNodes(vtkGeoTreeNode id0) {
32     long temp = GetRequestedNodes_5(id0);
33
34     if (temp == 0) return null;
35     return (vtkCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native void Initialize_6(int id0);
39   public void Initialize(int id0)
40     { Initialize_6(id0); }
41
42   private native void ShutDown_7();
43   public void ShutDown()
44     { ShutDown_7(); }
45
46   private native void WorkerThread_8();
47   public void WorkerThread()
48     { WorkerThread_8(); }
49
50   private native long GetTransform_9();
51   public vtkAbstractTransform GetTransform() {
52     long temp = GetTransform_9();
53
54     if (temp == 0) return null;
55     return (vtkAbstractTransform)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
56 }
57
58   public vtkGeoSource() { super(); }
59
60   public vtkGeoSource(long id) { super(id); }
61
62 }