1: /**
2: An interface for a public clone method.
3:
4: @author Frank M. Carrano
5: @author Timothy M. Henry
6: @version 4.0
7: */
8: public interface Copyable extends Cloneable
9: {
10: public Object clone();
11: } // end Copyable