// java wrapper for vtkActorCollection object // package vtk; import vtk.*; public class vtkActorCollection extends vtkPropCollection { private native int IsTypeOf_0(String id0); public int IsTypeOf(String id0) { return IsTypeOf_0(id0); } private native int IsA_1(String id0); public int IsA(String id0) { return IsA_1(id0); } private native void AddItem_2(vtkActor id0); public void AddItem(vtkActor id0) { AddItem_2(id0); } private native long GetNextActor_3(); public vtkActor GetNextActor() { long temp = GetNextActor_3(); if (temp == 0) return null; return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetLastActor_4(); public vtkActor GetLastActor() { long temp = GetLastActor_4(); if (temp == 0) return null; return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetNextItem_5(); public vtkActor GetNextItem() { long temp = GetNextItem_5(); if (temp == 0) return null; return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetLastItem_6(); public vtkActor GetLastItem() { long temp = GetLastItem_6(); if (temp == 0) return null; return (vtkActor)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void ApplyProperties_7(vtkProperty id0); public void ApplyProperties(vtkProperty id0) { ApplyProperties_7(id0); } public vtkActorCollection() { super(); } public vtkActorCollection(long id) { super(id); } public native long VTKInit(); }