blob: ccc96c333b917cc020890f4087e657108ce73f75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package jcgp.gui.population;
import javafx.scene.paint.Paint;
import jcgp.backend.population.Output;
import jcgp.gui.constants.Constants;
public class GUIOutput extends GUIGene {
private Output output;
public GUIOutput(final Output output) {
super();
this.output = output;
}
void setOutput(Output output2) {
// TODO Auto-generated method stub
}
@Override
public void mouseEnter() {
mainCircle.setFill(Paint.valueOf(Constants.SOFT_HIGHLIGHT_COLOUR));
}
@Override
public void mouseExit() {
mainCircle.setFill(Paint.valueOf(Constants.NEUTRAL_COLOUR));
}
}
|