// java wrapper for vtkCollectionIterator object // package vtk; import vtk.*; public class vtkCollectionIterator extends vtkObject { 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 SetCollection_2(vtkCollection id0); public void SetCollection(vtkCollection id0) { SetCollection_2(id0); } private native long GetCollection_3(); public vtkCollection GetCollection() { long temp = GetCollection_3(); if (temp == 0) return null; return (vtkCollection)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void InitTraversal_4(); public void InitTraversal() { InitTraversal_4(); } private native void GoToFirstItem_5(); public void GoToFirstItem() { GoToFirstItem_5(); } private native void GoToNextItem_6(); public void GoToNextItem() { GoToNextItem_6(); } private native int IsDoneWithTraversal_7(); public int IsDoneWithTraversal() { return IsDoneWithTraversal_7(); } private native long GetCurrentObject_8(); public vtkObject GetCurrentObject() { long temp = GetCurrentObject_8(); if (temp == 0) return null; return (vtkObject)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } public vtkCollectionIterator() { super(); } public vtkCollectionIterator(long id) { super(id); } public native long VTKInit(); }