java.lang.Object
javafx.beans.binding.ObjectExpression<T>
javafx.beans.property.ReadOnlyObjectProperty<T>
javafx.beans.property.ObjectProperty<T>
javafx.beans.property.ObjectPropertyBase<T>
javafx.beans.property.SimpleObjectProperty<T>
javafx.beans.property.ReadOnlyObjectWrapper<T>
- All Implemented Interfaces:
Observable,Property<T>,ReadOnlyProperty<T>,ObservableObjectValue<T>,ObservableValue<T>,WritableObjectValue<T>,WritableValue<T>
public class ReadOnlyObjectWrapper<T> extends SimpleObjectProperty<T>
This class provides a convenient class to define read-only properties. It
creates two properties that are synchronized. One property is read-only
and can be passed to external users. The other property is read- and
writable and should be used internally only.
- Since:
- JavaFX 2.0
-
Constructor Summary
Constructors Constructor Description ReadOnlyObjectWrapper()The constructor ofReadOnlyObjectWrapperReadOnlyObjectWrapper(Object bean, String name)The constructor ofReadOnlyObjectWrapperReadOnlyObjectWrapper(Object bean, String name, T initialValue)The constructor ofReadOnlyObjectWrapperReadOnlyObjectWrapper(T initialValue)The constructor ofReadOnlyObjectWrapper -
Method Summary
Modifier and Type Method Description ReadOnlyObjectProperty<T>getReadOnlyProperty()Returns the readonly property, that is synchronized with thisReadOnlyObjectWrapper.Methods declared in class javafx.beans.property.ObjectPropertyBase
fireValueChangedEvent, invalidated, toStringMethods declared in class javafx.beans.binding.ObjectExpression
asString, asString, asString, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull, objectExpressionMethods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface javafx.beans.Observable
addListener, removeListenerMethods declared in interface javafx.beans.value.ObservableObjectValue
getMethods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListenerMethods declared in interface javafx.beans.property.Property
bind, bindBidirectional, isBound, unbind, unbindBidirectionalMethods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getNameMethods declared in interface javafx.beans.value.WritableObjectValue
get, setMethods declared in interface javafx.beans.value.WritableValue
getValue, setValue
-
Constructor Details
-
ReadOnlyObjectWrapper
public ReadOnlyObjectWrapper()The constructor ofReadOnlyObjectWrapper -
ReadOnlyObjectWrapper
The constructor ofReadOnlyObjectWrapper- Parameters:
initialValue- the initial value of the wrapped value
-
ReadOnlyObjectWrapper
The constructor ofReadOnlyObjectWrapper- Parameters:
bean- the bean of thisReadOnlyObjectPropertyname- the name of thisReadOnlyObjectProperty
-
ReadOnlyObjectWrapper
The constructor ofReadOnlyObjectWrapper- Parameters:
bean- the bean of thisReadOnlyObjectPropertyname- the name of thisReadOnlyObjectPropertyinitialValue- the initial value of the wrapped value
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlyObjectWrapper.- Returns:
- the readonly property
-