Package javafx.beans.property

Examples of javafx.beans.property.SimpleDoubleProperty


            batteryCharge.set(clamp(0.0, 1.0, BATTERY_CHARGE));
        }
    }
    public final DoubleProperty batteryChargeProperty() {
        if (null == batteryCharge) {
            batteryCharge = new SimpleDoubleProperty(this, "batteryCharge", _batteryCharge);
        }
        return batteryCharge;
    }
View Full Code Here


            signalStrength.set(clamp(0.0, 1.0, SIGNAL_STRENGTH));
        }
    }
    public final DoubleProperty signalStrengthProperty() {
        if (null == signalStrength) {
            signalStrength = new SimpleDoubleProperty(this, "signalStrength", _signalStrength);
        }
        return signalStrength;
    }
View Full Code Here

            degrees.set(DEGREES);
        }
    }
    public DoubleProperty degreesProperty() {
        if (null == degrees) {
            degrees = new SimpleDoubleProperty(this, "degrees", _degrees);
        }
        return degrees;
    }
View Full Code Here

            offset.set(OFFSET);
        }
    }
    public DoubleProperty offsetProperty() {
        if (null == offset) {
            offset = new SimpleDoubleProperty(this, "offset", _offset);
        }
        return offset;
    }
View Full Code Here

            radius.set(RADIUS);
        }
    }
    public DoubleProperty radiusProperty() {
        if (null == radius) {
            radius = new SimpleDoubleProperty(this, "radius", _radius);
        }
        return radius;
    }
View Full Code Here

            buttonSize.set(BUTTON_SIZE);
        }
    }
    public DoubleProperty buttonSizeProperty() {
        if (null == buttonSize) {
            buttonSize = new SimpleDoubleProperty(this, "buttonSize", _buttonSize);
        }
        return buttonSize;
    }
View Full Code Here

            value.set(START);
        }
    }
    public final DoubleProperty startProperty() {
        if (null == value) {
            value = new SimpleDoubleProperty(this, "value", _value);
        }
        return value;
    }
View Full Code Here

            buttonAlpha.set(alpha);
        }
    }
    public DoubleProperty buttonAlphaProperty() {
        if (null == buttonAlpha) {
            buttonAlpha = new SimpleDoubleProperty(this, "buttonAlpha", _buttonAlpha);
        }
        return buttonAlpha;
    }
View Full Code Here

    public static final SplitFlapBuilder create() {
        return new SplitFlapBuilder();
    }

    public final SplitFlapBuilder flipTime(final double FLIP_TIME) {
        properties.put("flipTime", new SimpleDoubleProperty(FLIP_TIME));
        return this;
    }
View Full Code Here

        properties.put("maxSize", new SimpleObjectProperty<>(new Dimension2D(WIDTH, HEIGHT)));
        return (B)this;
    }

    public final B prefWidth(final double PREF_WIDTH) {
        properties.put("prefWidth", new SimpleDoubleProperty(PREF_WIDTH));
        return (B)this;
    }
View Full Code Here

TOP

Related Classes of javafx.beans.property.SimpleDoubleProperty

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.