Source of CloneableListInterface.java


  1: /**
  2:    An interface for a cloneable list.
  3: 
  4:    @author Frank M. Carrano
  5:    @author Timothy M. Henry
  6:    @version 4.0
  7: */
  8: public interface CloneableListInterface<T>
  9:                  extends ListInterface<T>, Copyable // Or Cloneable
 10: {
 11: } // end CloneableListInterface