java.lang.Object
javafx.beans.binding.ObjectExpression<T>
javafx.beans.property.ReadOnlyObjectProperty<T>
javafx.beans.property.ReadOnlyObjectPropertyBase<T>
- Type Parameters:
- T- the type of the wrapped- Object
- All Implemented Interfaces:
- Observable,- ReadOnlyProperty<T>,- ObservableObjectValue<T>,- ObservableValue<T>
- Direct Known Subclasses:
- ReadOnlyJavaBeanObjectProperty
public abstract class ReadOnlyObjectPropertyBase<T> extends ReadOnlyObjectProperty<T>
Base class for all readonly properties wrapping an arbitrary 
Object. This class provides a default
 implementation to attach listener.- Since:
- JavaFX 2.0
- See Also:
- ReadOnlyObjectProperty
- 
Constructor SummaryConstructors Constructor Description ReadOnlyObjectPropertyBase()Creates a defaultReadOnlyObjectPropertyBase.
- 
Method SummaryModifier and Type Method Description protected voidfireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners.Methods declared in class javafx.beans.property.ReadOnlyObjectPropertytoStringMethods declared in class javafx.beans.binding.ObjectExpressionasString, asString, asString, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull, objectExpressionMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableObjectValuegetMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListenerMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getName
- 
Constructor Details- 
ReadOnlyObjectPropertyBasepublic ReadOnlyObjectPropertyBase()Creates a defaultReadOnlyObjectPropertyBase.
 
- 
- 
Method Details- 
fireValueChangedEventprotected void fireValueChangedEvent()Sends notifications to all attachedInvalidationListenersandChangeListeners. This method needs to be called, if the value of this property changes.
 
-