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 initializing specific classes.<p> 14 * Such an initializer answers via isHandlerFor(Class) whether he could init 15 * the given class.<p> 16 * The perform(Object, Object) method does the init acknowledged before with 17 * isHandlerFor(Class). 18 * 19 * @author Klaus Meffert 20 * @since 2.6 21 */ 22 public interface IInitializer extends IHandler { 23 /** String containing the CVS revision. Read out via reflection!*/ 24 final static String CVS_REVISION = "$Revision: 1.1 $"; 25 26 } 27