Class ConvertedObservableValue<A,B>
- All Implemented Interfaces:
Observable,ObservableValue<A>
- Direct Known Subclasses:
ConvertedProperty
- Author:
- Bruno Salmon
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConvertedObservableValue(ObservableValue<B> observableValue, dev.webfx.platform.util.function.Converter<B, A> bToAConverter) -
Method Summary
Modifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidaddListener(ChangeListener<? super A> listener) Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.getValue()Returns the current value of thisObservableValuevoidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.voidremoveListener(ChangeListener<? super A> listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges.
-
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:ObservableValueAdds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges. 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
ChangeListenerinstance may be safely registered for differentObservableValues.The
ObservableValuestores 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 callingremoveListenerafter use or to use an instance ofWeakChangeListeneravoid this situation.- Specified by:
addListenerin interfaceObservableValue<A>- Parameters:
listener- The listener to register- See Also:
-
removeListener
Description copied from interface:ObservableValueRemoves the given listener from the list of listeners, that are notified whenever the value of theObservableValuechanges.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:
removeListenerin interfaceObservableValue<A>- Parameters:
listener- The listener to remove- See Also:
-
getValue
Description copied from interface:ObservableValueReturns the current value of thisObservableValue- Specified by:
getValuein interfaceObservableValue<A>- Returns:
- The current value
-
addListener
Description copied from interface:ObservableAdds anInvalidationListenerwhich will be notified whenever theObservablebecomes 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
InvalidationListenerinstance may be safely registered for differentObservables.The
Observablestores 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 callingremoveListenerafter use or to use an instance ofWeakInvalidationListeneravoid this situation.- Specified by:
addListenerin interfaceObservable- Parameters:
listener- The listener to register- See Also:
-
removeListener
Description copied from interface:ObservableRemoves the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes 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:
removeListenerin interfaceObservable- Parameters:
listener- The listener to remove- See Also:
-