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.data.config; 11 12 /** 13 * This interface must be implemented for any class to be Configurable. 14 * 15 * @author Siddhartha Azad 16 * @author Klaus Meffert 17 * @since 2.3 18 * */ 19 public interface Configurable { 20 /** String containing the CVS revision. Read out via reflection!*/ 21 final static String CVS_REVISION = "$Revision: 1.3 $"; 22 23 /** 24 * @return name of the variable representing a configurable 25 * @author Klaus Meffert 26 * @since 2.6 27 */ 28 // String getConfigVarName(); 29 } 30