Module javafx.base

Class FloatPropertyBase

All Implemented Interfaces:
NumberExpression, Observable, Property<Number>, ReadOnlyProperty<Number>, ObservableFloatValue, ObservableNumberValue, ObservableValue<Number>, WritableFloatValue, WritableNumberValue, WritableValue<Number>
Direct Known Subclasses:
SimpleFloatProperty, StyleableFloatProperty

public abstract class FloatPropertyBase
extends FloatProperty
The class FloatPropertyBase is the base class for a property wrapping a float value. It provides all the functionality required for a property except for the ReadOnlyProperty.getBean() and ReadOnlyProperty.getName() methods, which must be implemented by extending classes.
Since:
JavaFX 2.0
See Also:
FloatProperty
  • Constructor Details

    • FloatPropertyBase

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

      public FloatPropertyBase​(float initialValue)
      The constructor of the FloatPropertyBase.
      Parameters:
      initialValue - the initial value of the wrapped value
  • Method Details

    • fireValueChangedEvent

      protected void fireValueChangedEvent()
      Sends notifications to all attached InvalidationListeners and ChangeListeners. This method is called when the value is changed, either manually by calling WritableFloatValue.set(float) or in case of a bound property, if the binding becomes invalid.
    • invalidated

      protected void invalidated()
      The method invalidated() can be overridden to receive invalidation notifications. This is the preferred option in Objects defining the property, because it requires less memory. The default implementation is empty.
    • toString

      public String toString()
      Returns a string representation of this FloatPropertyBase object.
      Overrides:
      toString in class FloatProperty
      Returns:
      a string representation of this FloatPropertyBase object.