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 TypeMethodDescriptionvoidchanged(UnregisterableListener unregisterableListener, T oldValue, T newValue) Called when the value of anObservableValuechanges.
-
Method Details
-
changed
Called when the value of anObservableValuechanges.In general, it is considered bad practice to modify the observed value in this method.
- Parameters:
oldValue- The old valuenewValue- The new valueobservable- TheObservableValuewhich value changed
-