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; 11 12 /** 13 * IDataElementList is an interface describing a list of IDataElement elements 14 * 15 * @author Klaus Meffert 16 * @since 2.0 17 */ 18 public interface IDataElementList { 19 /** String containing the CVS revision. Read out via reflection!*/ 20 final static String CVS_REVISION = "$Revision: 1.3 $"; 21 22 IDataElement item(int a_index); 23 24 int getLength(); 25 26 void add(IDataElement a_element); 27 } 28