package jcgp.backend.parameters;
import javafx.beans.property.SimpleDoubleProperty;
/**
* 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.
*
* 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 DoubleMonitor} for an example
* of this usage.
*
* 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 DoubleParameter extends Parameter {
/**
* 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 DoubleParameter(double value, String name) {
super(name, false, false);
this.valueProperty = new SimpleDoubleProperty(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 DoubleParameter(double value, String name, boolean critical) {
super(name, false, critical);
this.valueProperty = new SimpleDoubleProperty(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 DoubleParameter(double value, String name, boolean monitor, boolean critical) {
super(name, monitor, critical);
this.valueProperty = new SimpleDoubleProperty(value);
}
@Override
public Double get() {
return super.get().doubleValue();
}
@Override
public void validate(Number newValue) {
/*
* Blank by default.
* Instances should override this as necessary.
*
*/
}
}