Package dev.webfx.kit.util.properties
Interface UnregisterableChangeListener<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
changed
(UnregisterableListener unregisterableListener, T oldValue, T newValue) Called when the value of anObservableValue
changes.
-
Method Details
-
changed
Called when the value of anObservableValue
changes.In general, it is considered bad practice to modify the observed value in this method.
- Parameters:
oldValue
- The old valuenewValue
- The new valueobservable
- TheObservableValue
which value changed
-