Package com.sun.javafx.binding
Class BindingHelperObserver
java.lang.Object
com.sun.javafx.binding.BindingHelperObserver
- All Implemented Interfaces:
InvalidationListener
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
invalidated
(Observable observable) This method needs to be provided by an implementation ofInvalidationListener
.
-
Constructor Details
-
BindingHelperObserver
-
-
Method Details
-
invalidated
Description copied from interface:InvalidationListener
This method needs to be provided by an implementation ofInvalidationListener
. It is called if anObservable
becomes invalid.In general is is considered bad practice to modify the observed value in this method.
- Specified by:
invalidated
in interfaceInvalidationListener
- Parameters:
observable
- TheObservable
that became invalid
-