00001 00058 package com.arcle.rmt.xplat.util; 00059 00060 00065 public interface Iterator { 00073 boolean hasNext(); 00074 00081 Object next(); 00082 00099 void remove(); 00100 }