1 package org.jgap.util;2 3 import java.util.*;4 5 /**6 * Interface introducing the clone method that should already be within7 * java.util.Cloneable!8 *9 * @author Klaus Meffert10 * @since 3.111 */12 public interface ICloneable13 extends Cloneable {14 /** String containing the CVS revision. Read out via reflection!*/15 final static String CVS_REVISION = "$Revision: 1.1 $";16 17 Object clone();18 }19