package jcgp.gui.population; import jcgp.gui.population.GUIGene.GUIGeneState; /** * A loose equivalent to {@link jcgp.backend.population.Connection}. *
* This defines behaviour that all GUI representations of connections * should be capable of. * * @author Eduardo Pedroni * */ public interface GUIConnection { /** * Set the connection's state, but also recursively propagate that state * all the way back to the inputs. * * @param state the state to set. */ public void setStateRecursively(GUIGeneState state); }