/**
   A class that implements the ADT list by using a chain of nodes.
   
   @author Frank M. Carrano
   @author Timothy M. Henry
   @author Charles Hoot
   @version 5.0
*/
public class LinkedChainList<T> extends LinkedChainBase<T>
                             implements ListInterface<T>
{
	public LinkedChainList()
	{
		super(); // Initializes the linked chain
	} // end default constructor

/* < Implementations of the public methods add, remove, replace, getEntry, and contains
     go here. >
     . . . */
} // end LinkedChainList



