/**
   An interface for a public clone method.

   @author Frank M. Carrano
   @author Timothy M. Henry
   @version 5.0
*/
public interface Copyable extends Cloneable
{
   public Object clone();
} // end Copyable
