1 10 package org.jgap.supergenes; 11 12 import org.jgap.*; 13 14 34 public interface Supergene 35 extends Gene, ICompositeGene { 36 37 final static String CVS_REVISION = "$Revision: 1.12 $"; 38 39 48 boolean isValid(); 49 50 54 Gene[] getGenes(); 55 56 64 Gene geneAt(int a_index); 65 66 73 void setValidator(SupergeneValidator a_validator); 74 75 82 SupergeneValidator getValidator(); 83 } 84 | Popular Tags |