/**
   An interface for a cloneable list.

   @author Frank M. Carrano
   @author Timothy M. Henry
   @version 5.0
*/
public interface CloneableListInterface<T>
                 extends ListInterface<T>, Copyable // Or Cloneable
{
} // end CloneableListInterface
