Module javafx.base

Class ObjectPropertyBase<T>

    • Constructor Detail

      • ObjectPropertyBase

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

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

      • 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 WritableObjectValue.set(T) 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 ObjectPropertyBase object.
        Overrides:
        toString in class ObjectProperty<T>
        Returns:
        a string representation of this ObjectPropertyBase object.