aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/parameters/monitors/DoubleMonitor.java
blob: 36b0e22976454b8a20e0a4943276b28949aa9dd9 (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
39
40
41
42
43
44
45
package jcgp.backend.parameters.monitors;

import jcgp.backend.parameters.DoubleParameter;

/**
 * This is a special type of {@code DoubleParameter} which 
 * cannot be modified in the GUI (if the GUI is in use).
 * 
 * @author Eduardo Pedroni
 *
 */
public class DoubleMonitor extends DoubleParameter {
	
	/**
	 * Creates a new instance of this class, assuming the monitor
	 * is not critical.
	 * 
	 * @param value the initial value for this monitor.
	 * @param name the name of this monitor, for GUI display.
	 */
	public DoubleMonitor(double value, String name) {
		super(value, name, true, false);
	}
	
	/**
	 * Creates a new instance of this class.
	 * 
	 * @param value the initial value for this monitor.
	 * @param name the name of this monitor, for GUI display.
	 * @param critical true if the monitor is critical.
	 */
	public DoubleMonitor(double value, String name, boolean critical) {
		super(value, name, true, critical);
	}

	@Override
	public void validate(Number newValue) {
		/*
		 *  Blank by default.
		 *  Instances should override this as necessary.
		 *  
		 */
	}

}