1: // @author Frank M. Carrano, Timothy M. Henry
2: // @version 5.0
4: public class LList<T extends Copyable> implements CloneableListInterface<T>
5: {
6: private Node firstNode; // Reference to first node of chain
7: private int numberOfEntries;
8: // . . .
10: