public class LinkedChainList
1: /**
2: A class that implements the ADT list by using a chain of nodes.
3:
4: @author Frank M. Carrano
5: @author Timothy M. Henry
6: @author Charles Hoot
7: @version 5.0
8: */
9: public class LinkedChainList<T> extends LinkedChainBase<T>
10: implements ListInterface<T>
11: {
12: public LinkedChainList()
13: {
14: super(); // Initializes the linked chain
15: } // end default constructor
17: /* < Implementations of the public methods add, remove, replace, getEntry, and contains
18: go here. >
19: . . . */
20: } // end LinkedChainList