aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/gui/population/GUIMutable.java
blob: fa996e225a68e0d532c05214448857223dc67f82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package jcgp.gui.population;

import javafx.scene.shape.Line;

/**
 * A loose equivalent to {@link jcgp.backend.population.Mutable}.
 * <br>
 * This defines behaviour that all GUI representations of mutables
 * should be capable of.
 * 
 * @author Eduardo Pedroni
 *
 */
public interface GUIMutable {
	
	public Line[] getLines();
	
	public GUIConnection[] getConnections();
	
}