Data Structures, Algorithms, & Applications in Java
Chapter 5, Exercise 17



The code for the interface is:
package dataStructures;

import java.util.*;

public interface IterableLinearList
                 extends LinearList, Iterator
   {}