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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
package jcgp.backend.parameters;
import javafx.beans.property.SimpleIntegerProperty;
import jcgp.backend.parameters.monitors.IntegerMonitor;
/**
* Parameter subclass for the double type. Most of the
* functionality is already implemented in {@code Parameter},
* leaving only construction and type definition to the
* subclasses.
* <br><br>
* This class contains three constructors, two of which are public.
* One assumes the parameter is not critical and only takes a name
* and initial value, while the other allows the critical flag
* to be set as well. The third constructor is protected and allows
* the monitor flag to be set as well, allowing subclasses of this class
* to be used as monitors. See {@link IntegerMonitor} for an example
* of this usage.
* <br><br>
* The validate method is overridden here and left blank since not all
* parameters actually require validation, but where validation is
* required this method can be anonymously overridden on an instance-to-instance
* basis.
*
* @author Eduardo Pedroni
*
*/
public class IntegerParameter extends Parameter<Number> {
/**
* Creates a new instance of this class, assuming the parameter
* is not critical.
*
* @param value the initial value for this parameter.
* @param name the name of this parameter, for GUI display.
*/
public IntegerParameter(int value, String name) {
super(name, false, false);
this.valueProperty = new SimpleIntegerProperty(value);
}
/**
* Creates a new instance of this class.
*
* @param value the initial value for this parameter.
* @param name the name of this parameter, for GUI display.
* @param critical true if the parameter is critical.
*/
public IntegerParameter(int value, String name, boolean critical) {
super(name, false, critical);
this.valueProperty = new SimpleIntegerProperty(value);
}
/**
* For use by subclasses only, this constructor allows the monitor flag to be set.
*
* @param value the initial value for this parameter.
* @param name the name of this parameter, for GUI display.
* @param monitor true if the parameter is a monitor.
* @param critical true if the parameter is critical.
*/
protected IntegerParameter(int value, String name, boolean monitor, boolean critical) {
super(name, monitor, critical);
this.valueProperty = new SimpleIntegerProperty(value);
}
@Override
public Integer get() {
return super.get().intValue();
}
@Override
public void validate(Number newValue) {
/*
* Blank by default.
* Instances should override this as necessary.
*
*/
}
}
|