Package javafx.css

Class StyleableFloatProperty

    • Constructor Detail

      • StyleableFloatProperty

        public StyleableFloatProperty()
        The constructor of the StyleableFloatProperty.
      • StyleableFloatProperty

        public StyleableFloatProperty​(float initialValue)
        The constructor of the StyleableFloatProperty.
        Parameters:
        initialValue - the initial value of the wrapped Object
    • Method Detail

      • applyStyle

        public void applyStyle​(StyleOrigin origin,
                               Number v)
        This method is called from CSS code to set the value of the property.
        Specified by:
        applyStyle in interface StyleableProperty<Number>
        Parameters:
        origin - the origin
        v - the value
      • bind

        public void bind​(ObservableValue<? extends Number> observable)
        Create a unidirection binding for this Property.

        Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated.

        Specified by:
        bind in interface Property<Number>
        Overrides:
        bind in class FloatPropertyBase
        Parameters:
        observable - The observable this Property should be bound to.
      • getStyleOrigin

        public StyleOrigin getStyleOrigin()
        Tells the origin of the value of the property. This is needed to determine whether or not CSS can override the value.
        Specified by:
        getStyleOrigin in interface StyleableProperty<Number>
        Returns:
        the style origin