Interface Property.ChangeListener<T>

  • Type Parameters:
    T - the type
    Enclosing interface:
    Property<T>

    public static interface Property.ChangeListener<T>
    Listener to observe changes.
    • Method Detail

      • valueChanged

        void valueChanged​(Property<T> property,
                          T oldValue,
                          T newValue)
        Handle the changed value.
        Parameters:
        property - the property
        oldValue - the old value
        newValue - the new value