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 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 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, toString
Methods declared in class javafx.beans.binding.ObjectExpression
asString, asString, asString, 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
addListener, removeListener
Methods declared in interface javafx.beans.value.ObservableObjectValue
get
Methods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
Methods declared in interface javafx.beans.property.Property
bind, bindBidirectional, isBound, unbind, unbindBidirectional
Methods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName
Methods declared in interface javafx.beans.value.WritableObjectValue
get, set
Methods 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 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
-