aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/gui/population/GUINode.java
blob: 7b5916206df39c1eef735bb2e54347f43c25e9e5 (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
32
33
34
35
36
37
38
package jcgp.gui.population;

import javafx.scene.paint.Paint;
import jcgp.backend.population.Node;
import jcgp.gui.constants.Constants;

public class GUINode extends GUIGene {

	private Node node;
	

	public GUINode(final Node node) {
		super();
		
		// store references
		this.node = node;
	}
	
	public Node getNode() {
		return node;
	}

	void setNode(Node node2) {
		// 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));
	}
	
}