Package jcgp.backend.parameters

Source Code of jcgp.backend.parameters.IntegerParameter

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.
     * 
     */
  }
TOP

Related Classes of jcgp.backend.parameters.IntegerParameter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.