1 /* 2 * This file is part of JGAP. 3 * 4 * JGAP offers a dual license model containing the LGPL as well as the MPL. 5 * 6 * For licencing information please see the file license.txt included with JGAP 7 * or have a look at the top of class org.jgap.Chromosome which representatively 8 * includes the JGAP license policy applicable for any file delivered with JGAP. 9 */ 10 package org.jgap; 11 12 /** 13 * Interface for handlers capable of comparing instances of specific classes. 14 * <p>A compareTo-handler answers via isHandlerFor(Class) whether he could 15 * compare instances of the given class.<p> 16 * The perform(Object, Object) method does the comparing acknowledged before 17 * with isHandlerFor(Class). 18 * 19 * @author Klaus Meffert 20 * @since 2.6 21 */ 22 public interface ICompareToHandler 23 extends IHandler { 24 /** String containing the CVS revision. Read out via reflection!*/ 25 final static String CVS_REVISION = "$Revision: 1.1 $"; 26 27 } 28