// java wrapper for vtkCellIterator object // package vtk; import vtk.*; public class vtkCellIterator 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 InitTraversal_2(); public void InitTraversal() { InitTraversal_2(); } private native void GoToNextCell_3(); public void GoToNextCell() { GoToNextCell_3(); } private native boolean IsDoneWithTraversal_4(); public boolean IsDoneWithTraversal() { return IsDoneWithTraversal_4(); } private native int GetCellType_5(); public int GetCellType() { return GetCellType_5(); } private native int GetCellDimension_6(); public int GetCellDimension() { return GetCellDimension_6(); } private native int GetCellId_7(); public int GetCellId() { return GetCellId_7(); } private native long GetPointIds_8(); public vtkIdList GetPointIds() { long temp = GetPointIds_8(); if (temp == 0) return null; return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetPoints_9(); public vtkPoints GetPoints() { long temp = GetPoints_9(); if (temp == 0) return null; return (vtkPoints)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native long GetFaces_10(); public vtkIdList GetFaces() { long temp = GetFaces_10(); if (temp == 0) return null; return (vtkIdList)vtkObjectBase.JAVA_OBJECT_MANAGER.getJavaObject(temp); } private native void GetCell_11(vtkGenericCell id0); public void GetCell(vtkGenericCell id0) { GetCell_11(id0); } private native int GetNumberOfPoints_12(); public int GetNumberOfPoints() { return GetNumberOfPoints_12(); } private native int GetNumberOfFaces_13(); public int GetNumberOfFaces() { return GetNumberOfFaces_13(); } public vtkCellIterator() { super(); } public vtkCellIterator(long id) { super(id); } }