-
- All Known Implementing Classes:
WeakInvalidationListener
- 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 InvalidationListener
AnInvalidationListener
is notified whenever anObservable
becomes invalid. It can be registered and unregistered withObservable.addListener(InvalidationListener)
respectivelyObservable.removeListener(InvalidationListener)
.For an in-depth explanation of invalidation events and how they differ from change events, see the documentation of
ObservableValue
.The same instance of
InvalidationListener
can be registered to listen to multipleObservables
.- Since:
- JavaFX 2.0
- See Also:
Observable
,ObservableValue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
invalidated(Observable observable)
This method needs to be provided by an implementation ofInvalidationListener
.
-
-
-
Method Detail
-
invalidated
void invalidated(Observable observable)
This method needs to be provided by an implementation ofInvalidationListener
. It is called if anObservable
becomes invalid.In general, it is considered bad practice to modify the observed value in this method.
- Parameters:
observable
- TheObservable
that became invalid
-
-