Source of LListRevised.java


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