Uses of Interface
javafx.beans.InvalidationListener
| Package | Description | 
|---|---|
| javafx.beans | The package  javafx.beanscontains the interfaces that
                define the most generic form of observability. | 
- 
Uses of InvalidationListener in javafx.beansClasses in javafx.beans that implement InvalidationListener Modifier and Type Class Description classWeakInvalidationListenerAWeakInvalidationListenercan be used if anObservableshould only maintain a weak reference to the listener.Methods in javafx.beans with parameters of type InvalidationListener Modifier and Type Method Description voidObservable. addListener(InvalidationListener listener)Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidObservable. removeListener(InvalidationListener listener)Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.Constructors in javafx.beans with parameters of type InvalidationListener Constructor Description WeakInvalidationListener(InvalidationListener listener)The constructor ofWeakInvalidationListener.