aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/population/MutableElement.java
blob: 8ac3724e9698bd757f4feab2389a5be9df3401e3 (plain)
1
2
3
4
5
6
7
8
9
package jcgp.population;

public interface MutableElement {
	
	public void setConnection(Connection newConnection);
	
	public int getColumn();
	
}