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 * Interface a ConfigWriter uses to get the information from a ConfigFrame. 14 * 15 * @author Siddhartha Azad 16 * @since 2.3 17 * */ 18 public interface IConfigInfo { 19 /** String containing the CVS revision. Read out via reflection!*/ 20 final static String CVS_REVISION = "$Revision: 1.1 $"; 21 22 ConfigData getConfigData(); 23 24 /** 25 * Get the config file to write to. 26 * @return The config file name to write to. 27 * 28 * @author Siddhartha Azad 29 * @since 2.3 30 */ 31 String getFileName(); 32 } 33