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