package rebelsky.lists; /** * Iterators that step over the values in a list. * * @author CSC152 2005S */ public interface Cursor { public T next(); public boolean hasNext(); } // interface Cursor