1: /** 2: An interface for a class of objects that can be compared and cloned. 3: 4: @author Frank M. Carrano 5: @author Timothy M. Henry 6: @version 4.0 7: */ 8: public interface ComparableAndCopyable<T> extends Comparable<T>, Copyable 9: { 10: } // end ComparableAndCopyable