aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/population/Input.java
blob: e00573ee45e5bba23d9e5146fcf4f7dc9073dfd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package jcgp.population;

public class Input implements Connection {
	
	private int value = 0;
	
	public void setValue(int newValue) {
		value = newValue;
	}

	@Override
	public int getValue() {
		return value;
	}

}