]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkActor2DCollection.java
Loading VTK dlls with plug-in activator.
[simantics/3d.git] / vtk / src / vtk / vtkActor2DCollection.java
1 // java wrapper for vtkActor2DCollection object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkActor2DCollection extends vtkPropCollection
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 void Sort_2();
19   public void Sort()
20     { Sort_2(); }
21
22   private native void AddItem_3(vtkActor2D id0);
23   public void AddItem(vtkActor2D id0)
24     { AddItem_3(id0); }
25
26   private native int IsItemPresent_4(vtkActor2D id0);
27   public int IsItemPresent(vtkActor2D id0)
28     { return IsItemPresent_4(id0); }
29
30   private native long GetNextActor2D_5();
31   public vtkActor2D GetNextActor2D() {
32     long temp = GetNextActor2D_5();
33
34     if (temp == 0) return null;
35     return (vtkActor2D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetLastActor2D_6();
39   public vtkActor2D GetLastActor2D() {
40     long temp = GetLastActor2D_6();
41
42     if (temp == 0) return null;
43     return (vtkActor2D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native long GetNextItem_7();
47   public vtkActor2D GetNextItem() {
48     long temp = GetNextItem_7();
49
50     if (temp == 0) return null;
51     return (vtkActor2D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native long GetLastItem_8();
55   public vtkActor2D GetLastItem() {
56     long temp = GetLastItem_8();
57
58     if (temp == 0) return null;
59     return (vtkActor2D)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
60 }
61
62   private native void RenderOverlay_9(vtkViewport id0);
63   public void RenderOverlay(vtkViewport id0)
64     { RenderOverlay_9(id0); }
65
66   public vtkActor2DCollection() { super(); }
67
68   public vtkActor2DCollection(long id) { super(id); }
69   public native long   VTKInit();
70
71 }