/**
   A class that implements the ADT list by using a chain of nodes.
   
   @author Frank M. Carrano
   @author Charles Hoot
   @author Timothy M. Henry
   @version 4.0
*/
public class LListRevised<T> extends LinkedChainBase<T>
                             implements ListInterface<T>
{
	public LListRevised()
	{
		super(); // Initializes the linked chain
	} // end default constructor
/* < Implementations of the public methods add, remove, replace, getEntry, and contains
     go here. >
     . . . */
} // end LListRevised
