Interface IChangeListener<T>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface IChangeListener<T>
A change listener is notified when the value of an ObjectProperty changes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    apply(ObjectProperty<T> property, T oldValue, T newValue)
    Called when the value of a given ObjectProperty changes.