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>
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
ConstructorDescriptionThe constructor ofReadOnlyObjectWrapper
ReadOnlyObjectWrapper
(Object bean, String name) The constructor ofReadOnlyObjectWrapper
ReadOnlyObjectWrapper
(Object bean, String name, T initialValue) The constructor ofReadOnlyObjectWrapper
ReadOnlyObjectWrapper
(T initialValue) The constructor ofReadOnlyObjectWrapper
-
Method Summary
Modifier and TypeMethodDescriptionReturns the readonly property, that is synchronized with thisReadOnlyObjectWrapper
.Methods declared in class javafx.beans.property.SimpleObjectProperty
getBean, getName
Methods declared in class javafx.beans.property.ObjectPropertyBase
addListener, addListener, bind, fireValueChangedEvent, get, invalidated, isBound, removeListener, removeListener, set, toString, unbind
Methods declared in class javafx.beans.property.ObjectProperty
bindBidirectional, setValue, unbindBidirectional
Methods declared in class javafx.beans.binding.ObjectExpression
asString, asString, asString, getValue, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull, objectExpression
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface javafx.beans.Observable
subscribe
Methods declared in interface javafx.beans.value.ObservableValue
flatMap, getValue, map, orElse, subscribe, subscribe, when
Methods declared in interface javafx.beans.value.WritableValue
getValue
-
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 thisReadOnlyObjectProperty
name
- the name of thisReadOnlyObjectProperty
-
ReadOnlyObjectWrapper
The constructor ofReadOnlyObjectWrapper
- Parameters:
bean
- the bean of thisReadOnlyObjectProperty
name
- the name of thisReadOnlyObjectProperty
initialValue
- the initial value of the wrapped value
-
-
Method Details
-
getReadOnlyProperty
Returns the readonly property, that is synchronized with thisReadOnlyObjectWrapper
.- Returns:
- the readonly property
-