- All Known Subinterfaces:
- Binding<T>,- JavaBeanProperty<T>,- NumberBinding,- NumberExpression,- ObservableArray<T>,- ObservableBooleanValue,- ObservableDoubleValue,- ObservableFaceArray,- ObservableFloatArray,- ObservableFloatValue,- ObservableIntegerArray,- ObservableIntegerValue,- ObservableList<E>,- ObservableListValue<E>,- ObservableLongValue,- ObservableMap<K,,- V> - ObservableMapValue<K,,- V> - ObservableNumberValue,- ObservableObjectValue<T>,- ObservableSet<E>,- ObservableSetValue<E>,- ObservableStringValue,- ObservableValue<T>,- Platform.Preferences,- Property<T>,- ReadOnlyJavaBeanProperty<T>,- ReadOnlyProperty<T>,- TextInputControl.Content,- WritableListValue<E>,- WritableMapValue<K,,- V> - WritableSetValue<E>
- All Known Implementing Classes:
- BooleanBinding,- BooleanExpression,- BooleanProperty,- BooleanPropertyBase,- DoubleBinding,- DoubleExpression,- DoubleProperty,- DoublePropertyBase,- FilteredList,- FloatBinding,- FloatExpression,- FloatProperty,- FloatPropertyBase,- IntegerBinding,- IntegerExpression,- IntegerProperty,- IntegerPropertyBase,- JavaBeanBooleanProperty,- JavaBeanDoubleProperty,- JavaBeanFloatProperty,- JavaBeanIntegerProperty,- JavaBeanLongProperty,- JavaBeanObjectProperty,- JavaBeanStringProperty,- ListBinding,- ListExpression,- ListProperty,- ListPropertyBase,- LongBinding,- LongExpression,- LongProperty,- LongPropertyBase,- MapBinding,- MapExpression,- MapProperty,- MapPropertyBase,- ModifiableObservableListBase,- NumberExpressionBase,- ObjectBinding,- ObjectExpression,- ObjectProperty,- ObjectPropertyBase,- ObservableArrayBase,- ObservableListBase,- ObservableValueBase,- ReadOnlyBooleanProperty,- ReadOnlyBooleanPropertyBase,- ReadOnlyBooleanWrapper,- ReadOnlyDoubleProperty,- ReadOnlyDoublePropertyBase,- ReadOnlyDoubleWrapper,- ReadOnlyFloatProperty,- ReadOnlyFloatPropertyBase,- ReadOnlyFloatWrapper,- ReadOnlyIntegerProperty,- ReadOnlyIntegerPropertyBase,- ReadOnlyIntegerWrapper,- ReadOnlyJavaBeanBooleanProperty,- ReadOnlyJavaBeanDoubleProperty,- ReadOnlyJavaBeanFloatProperty,- ReadOnlyJavaBeanIntegerProperty,- ReadOnlyJavaBeanLongProperty,- ReadOnlyJavaBeanObjectProperty,- ReadOnlyJavaBeanStringProperty,- ReadOnlyListProperty,- ReadOnlyListPropertyBase,- ReadOnlyListWrapper,- ReadOnlyLongProperty,- ReadOnlyLongPropertyBase,- ReadOnlyLongWrapper,- ReadOnlyMapProperty,- ReadOnlyMapPropertyBase,- ReadOnlyMapWrapper,- ReadOnlyObjectProperty,- ReadOnlyObjectPropertyBase,- ReadOnlyObjectWrapper,- ReadOnlySetProperty,- ReadOnlySetPropertyBase,- ReadOnlySetWrapper,- ReadOnlyStringProperty,- ReadOnlyStringPropertyBase,- ReadOnlyStringWrapper,- SetBinding,- SetExpression,- SetProperty,- SetPropertyBase,- SimpleBooleanProperty,- SimpleDoubleProperty,- SimpleFloatProperty,- SimpleIntegerProperty,- SimpleListProperty,- SimpleLongProperty,- SimpleMapProperty,- SimpleObjectProperty,- SimpleSetProperty,- SimpleStringProperty,- SimpleStyleableBooleanProperty,- SimpleStyleableDoubleProperty,- SimpleStyleableFloatProperty,- SimpleStyleableIntegerProperty,- SimpleStyleableLongProperty,- SimpleStyleableObjectProperty,- SimpleStyleableStringProperty,- SortedList,- StringBinding,- StringExpression,- StringProperty,- StringPropertyBase,- StyleableBooleanProperty,- StyleableDoubleProperty,- StyleableFloatProperty,- StyleableIntegerProperty,- StyleableLongProperty,- StyleableObjectProperty,- StyleableStringProperty,- TransformationList
Observable is an entity that wraps content and allows to
 observe the content for invalidations.
 
 An implementation of Observable may support lazy evaluation,
 which means that the content is not immediately recomputed after changes, but
 lazily the next time it is requested. All bindings and properties in
 this library support lazy evaluation.
 
Implementations of this class should strive to generate as few events as possible to avoid wasting too much time in event handlers. Implementations in this library mark themselves as invalid when the first invalidation event occurs. They do not generate anymore invalidation events until their value is recomputed and valid again.
- Since:
- JavaFX 2.0
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.default SubscriptionCreates aSubscriptionon thisObservablewhich callsinvalidationSubscriberwhenever it becomes invalid.
- 
Method Details- 
addListenerAdds 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.- Parameters:
- listener- The listener to register
- Throws:
- NullPointerException- if the listener is null
- See Also:
 
- 
removeListenerRemoves 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. - Parameters:
- listener- The listener to remove
- Throws:
- NullPointerException- if the listener is null
- See Also:
 
- 
subscribeCreates aSubscriptionon thisObservablewhich callsinvalidationSubscriberwhenever it becomes invalid. The provided subscriber is akin to anInvalidationListenerwithout theObservableparameter. If the same subscriber is subscribed more than once, then it will be notified more than once. That is, no check is made to ensure uniqueness.Note that the same subscriber instance may be safely subscribed for different Observables.Also note that when subscribing on an Observablewith a longer lifecycle than the subscriber, the subscriber must be unsubscribed when no longer needed as the subscription will otherwise keep the subscriber from being garbage collected.- Parameters:
- invalidationSubscriber- a- Runnableto call whenever this value becomes invalid, cannot be- null
- Returns:
- a Subscriptionwhich can be used to cancel this subscription, nevernull
- Throws:
- NullPointerException- if the subscriber is- null
- Since:
- 21
- See Also:
 
 
-