Uses of Interface
edu.rice.comp211.laundry.list.ListI

Packages that use ListI
edu.rice.comp211.laundry.list   
edu.rice.comp211.laundry.sync   
 

Uses of ListI in edu.rice.comp211.laundry.list
 

Subinterfaces of ListI in edu.rice.comp211.laundry.list
 interface BiListI<T>
           
 

Classes in edu.rice.comp211.laundry.list that implement ListI
 class BiList<T>
          A circularly linked class implementing the BiListI interface.
 

Methods in edu.rice.comp211.laundry.list that return ListI
 ListI<T> ListI.insertFront(T o)
          Inserts the object o at the front of this list
 ListI<T> ListI.insertRear(T o)
          Inserts the object o at the rear of this list.
 ListI<T> ListI.newList()
          Factory method to instantiate a new empty list that can hold the same type of element.
 

Uses of ListI in edu.rice.comp211.laundry.sync
 

Classes in edu.rice.comp211.laundry.sync that implement ListI
 class SyncBiList<T>
          Specialty BiList that is used by the GUI to create animations by slowing the speed of the list operations down.