- 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>
该类提供了一个方便的类来定义只读属性。 它创建两个同步的属性。 一个属性是只读的,可以传递给外部用户。 另一个属性是可读写的,只能在内部使用。- 从以下版本开始:
- JavaFX 2.0
-
-
构造方法摘要
构造方法 Constructor 描述 ReadOnlyObjectWrapper()
构造函数为ReadOnlyObjectWrapper
ReadOnlyObjectWrapper(Object bean, String name)
构造函数为ReadOnlyObjectWrapper
ReadOnlyObjectWrapper(Object bean, String name, T initialValue)
构造函数为ReadOnlyObjectWrapper
ReadOnlyObjectWrapper(T initialValue)
构造函数为ReadOnlyObjectWrapper
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 protected void
fireValueChangedEvent()
发送所有附件的通知InvalidationListeners
和ChangeListeners
。ReadOnlyObjectProperty<T>
getReadOnlyProperty()
返回readonly属性,该属性与此ReadOnlyObjectWrapper
同步。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javafx.beans.binding.ObjectExpression
asString, asString, asString, getValue, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotNull, isNull, objectExpression
-
Methods inherited from class javafx.beans.property.ObjectProperty
bindBidirectional, setValue, unbindBidirectional
-
Methods inherited from class javafx.beans.property.ObjectPropertyBase
addListener, addListener, bind, get, invalidated, isBound, removeListener, removeListener, set, toString, unbind
-
Methods inherited from interface javafx.beans.value.ObservableValue
getValue
-
Methods inherited from class javafx.beans.property.SimpleObjectProperty
getBean, getName
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue
-
-
-
-
构造方法详细信息
-
ReadOnlyObjectWrapper
public ReadOnlyObjectWrapper()
构造函数为ReadOnlyObjectWrapper
-
ReadOnlyObjectWrapper
public ReadOnlyObjectWrapper(T initialValue)
构造函数为ReadOnlyObjectWrapper
- 参数
-
initialValue
- 包装值的初始值
-
ReadOnlyObjectWrapper
public ReadOnlyObjectWrapper(Object bean, String name)
构造函数为ReadOnlyObjectWrapper
- 参数
-
bean
- 这个ReadOnlyObjectProperty
的豆 -
name
- 这个ReadOnlyObjectProperty
的名字
-
-
方法详细信息
-
getReadOnlyProperty
public ReadOnlyObjectProperty<T> getReadOnlyProperty()
返回readonly属性,该属性与此ReadOnlyObjectWrapper
同步。- 结果
- 只读属性
-
fireValueChangedEvent
protected void fireValueChangedEvent()
发送所有附件的通知InvalidationListeners
和ChangeListeners
。 当该值被更改时,通过调用ObjectPropertyBase.set(T)
手动调用该方法,或者如果绑定变为无效,则调用该绑定属性。
-
-