// java wrapper for vtkGenericCellIterator object // package vtk; import vtk.*; public class vtkGenericCellIterator 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 Begin_2(); public void Begin() { Begin_2(); } private native int IsAtEnd_3(); public int IsAtEnd() { return IsAtEnd_3(); } private native long NewCell_4(); public vtkGenericAdaptorCell NewCell() { long temp = NewCell_4(); if (temp == 0) return null; return (vtkGenericAdaptorCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void GetCell_5(vtkGenericAdaptorCell id0); public void GetCell(vtkGenericAdaptorCell id0) { GetCell_5(id0); } private native long GetCell_6(); public vtkGenericAdaptorCell GetCell() { long temp = GetCell_6(); if (temp == 0) return null; return (vtkGenericAdaptorCell)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void Next_7(); public void Next() { Next_7(); } public vtkGenericCellIterator() { super(); } public vtkGenericCellIterator(long id) { super(id); } }