]> gerrit.simantics Code Review - simantics/3d.git/blob - vtk/src/vtk/vtkActorCollection.java
vtk 8.2.0
[simantics/3d.git] / vtk / src / vtk / vtkActorCollection.java
1 // java wrapper for vtkActorCollection object
2 //
3
4 package vtk;
5 import vtk.*;
6
7 public class vtkActorCollection 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 AddItem_2(vtkActor id0);
19   public void AddItem(vtkActor id0)
20     { AddItem_2(id0); }
21
22   private native long GetNextActor_3();
23   public vtkActor GetNextActor() {
24     long temp = GetNextActor_3();
25
26     if (temp == 0) return null;
27     return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
28 }
29
30   private native long GetLastActor_4();
31   public vtkActor GetLastActor() {
32     long temp = GetLastActor_4();
33
34     if (temp == 0) return null;
35     return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
36 }
37
38   private native long GetNextItem_5();
39   public vtkActor GetNextItem() {
40     long temp = GetNextItem_5();
41
42     if (temp == 0) return null;
43     return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
44 }
45
46   private native long GetLastItem_6();
47   public vtkActor GetLastItem() {
48     long temp = GetLastItem_6();
49
50     if (temp == 0) return null;
51     return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp);
52 }
53
54   private native void ApplyProperties_7(vtkProperty id0);
55   public void ApplyProperties(vtkProperty id0)
56     { ApplyProperties_7(id0); }
57
58   public vtkActorCollection() { super(); }
59
60   public vtkActorCollection(long id) { super(id); }
61   public native long   VTKInit();
62
63 }