Class ConvertedObservableValue<A,B>
- All Implemented Interfaces:
Observable
,ObservableValue<A>
- Direct Known Subclasses:
ConvertedProperty
- Author:
- Bruno Salmon
-
Field Summary
-
Constructor Summary
ConstructorDescriptionConvertedObservableValue
(ObservableValue<B> observableValue, dev.webfx.platform.util.function.Converter<B, A> bToAConverter) -
Method Summary
Modifier and TypeMethodDescriptionvoid
addListener
(InvalidationListener listener) Adds anInvalidationListener
which will be notified whenever theObservable
becomes invalid.void
addListener
(ChangeListener<? super A> listener) Adds aChangeListener
which will be notified whenever the value of theObservableValue
changes.getValue()
Returns the current value of thisObservableValue
void
removeListener
(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservable
becomes invalid.void
removeListener
(ChangeListener<? super A> listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValue
changes.
-
Field Details
-
observableValue
-
bToAConverter
-
-
Constructor Details
-
ConvertedObservableValue
public ConvertedObservableValue(ObservableValue<B> observableValue, dev.webfx.platform.util.function.Converter<B, A> bToAConverter)
-
-
Method Details
-
addListener
Description copied from interface:ObservableValue
Adds aChangeListener
which will be notified whenever the value of theObservableValue
changes. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
ChangeListener
instance may be safely registered for differentObservableValues
.The
ObservableValue
stores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListener
after use or to use an instance ofWeakChangeListener
avoid this situation.- Specified by:
addListener
in interfaceObservableValue<A>
- Parameters:
listener
- The listener to register- See Also:
-
removeListener
Description copied from interface:ObservableValue
Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValue
changes.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
- Specified by:
removeListener
in interfaceObservableValue<A>
- Parameters:
listener
- The listener to remove- See Also:
-
getValue
Description copied from interface:ObservableValue
Returns the current value of thisObservableValue
- Specified by:
getValue
in interfaceObservableValue<A>
- Returns:
- The current value
-
addListener
Description copied from interface:Observable
Adds anInvalidationListener
which will be notified whenever theObservable
becomes invalid. If the same listener is added more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same actual
InvalidationListener
instance may be safely registered for differentObservables
.The
Observable
stores a strong reference to the listener which will prevent the listener from being garbage collected and may result in a memory leak. It is recommended to either unregister a listener by callingremoveListener
after use or to use an instance ofWeakInvalidationListener
avoid this situation.- Specified by:
addListener
in interfaceObservable
- Parameters:
listener
- The listener to register- See Also:
-
removeListener
Description copied from interface:Observable
Removes the given listener from the list of listeners, that are notified whenever the value of theObservable
becomes invalid.If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
- Specified by:
removeListener
in interfaceObservable
- Parameters:
listener
- The listener to remove- See Also:
-