Package javafx.beans.property

Examples of javafx.beans.property.SimpleIntegerProperty


   * @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);
  }
View Full Code Here


   * @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);
  }
View Full Code Here

        autoUpdateProperty().setValue(autoUpdate);
    }

    public IntegerProperty updateTimerIntervalProperty() {
        if (updateTimerIntervalProperty == null) {
            updateTimerIntervalProperty = new SimpleIntegerProperty();
        }
        return updateTimerIntervalProperty;
    }
View Full Code Here

        modelLoadedProperty().setValue(modelLoaded);
    }

    public IntegerProperty logFileCharacterCountProperty() {
        if (logFileCharacterCountProperty == null) {
            logFileCharacterCountProperty = new SimpleIntegerProperty();
        }
        return logFileCharacterCountProperty;
    }
View Full Code Here

        return portBaseProperty().get();
    }

    public IntegerProperty portBaseProperty() {
        if (portBaseProperty == null) {
            portBaseProperty = new SimpleIntegerProperty();
        }
        return portBaseProperty;
    }
View Full Code Here

     * @see #order(Content.RotationOrder)
     * @param PAUSE Insert the time in milliseconds that the content will be showed in its final position, before
     * the selected effect starts again, or the content is replaced by other in the same area (see <i>order</i>).
     */
    public final ContentBuilder pause(final Integer PAUSE) {
        properties.put("pause", new SimpleIntegerProperty(PAUSE));
        return this;
    }
View Full Code Here

     * @see #effect(Content.Effect)
     * @param TIME_LAPSE in terms of milliseconds, is the time lapse to perform the animation effect,
     * movement or blink of the whole content.
     */
    public final ContentBuilder lapse(final Integer TIME_LAPSE) {
        properties.put("lapse", new SimpleIntegerProperty(TIME_LAPSE));
        return this;
    }
View Full Code Here

        matrixFont = new SimpleObjectProperty<>(VOID_MATRIX_FONT_NAME);
        fontGap    = new SimpleObjectProperty<>(VOID_GAP);
        txtAlign   = new SimpleObjectProperty<>(TXT_ALIGN);
        effect     = new SimpleObjectProperty<>(EFFECT);
        postEffect = new SimpleObjectProperty<>(POSTEFFECT);
        pause      = new SimpleIntegerProperty(PAUSE);
        lapse      = new SimpleIntegerProperty(SPEED);
        order      = new SimpleObjectProperty<>(ORDER);
        clear      = new SimpleBooleanProperty(CLEAR);
       
    }
View Full Code Here

     * @see #ledHeight(int)
     * @param LED_WIDTH Insert the columns of LEDs in the maxtrixPanel
     * @return
     */
    public final MatrixPanelBuilder ledWidth(final int LED_WIDTH) {
        properties.put("ledWidth", new SimpleIntegerProperty(LED_WIDTH));
        return this;
    }
View Full Code Here

     * @see #ledWidth(int)
     * @param LED_HEIGHT Insert the rows of LEDs in the matrixPanel
     * @return
     */
    public final MatrixPanelBuilder ledHeight(final int LED_HEIGHT) {
        properties.put("ledHeight", new SimpleIntegerProperty(LED_HEIGHT));
        return this;
    }
View Full Code Here

TOP

Related Classes of javafx.beans.property.SimpleIntegerProperty

Copyright © 2018 www.massapicom. 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.