1: import java.util.ListIterator; 2: /** 3: An interface for the ADT list that has an iterator implementing 4: the interface ListIterator. 5: 6: @author Frank M. Carrano 7: @author Timothy M. Henry 8: @version 4.0 9: */ 10: public interface ListWithListIteratorInterface<T> extends Iterable<T>, ListInterface<T> 11: { 12: public ListIterator<T> getIterator(); 13: } // end ListWithListIteratorInterface