package week03.linkedlist; public interface Iterator { public boolean hasNext(); public Object next(); }