- java.lang.Object
-
- javafx.beans.binding.ObjectExpression<T>
-
- javafx.beans.property.ReadOnlyObjectProperty<T>
-
- javafx.beans.property.ObjectProperty<T>
-
- 参数类型
-
T
- 包装的类型Object
- All Implemented Interfaces:
-
Observable
,Property<T>
,ReadOnlyProperty<T>
,ObservableObjectValue<T>
,ObservableValue<T>
,WritableObjectValue<T>
,WritableValue<T>
- 已知直接子类:
-
JavaBeanObjectProperty
,ObjectPropertyBase
public abstract class ObjectProperty<T> extends ReadOnlyObjectProperty<T> implements Property<T>, WritableObjectValue<T>
这个类提供了一个Property
的全面实现,包含一个任意的Object
。 a的值ObjectProperty
可以获取和设置ObservableObjectValue.get()
,ObjectExpression.getValue()
,WritableObjectValue.set(Object)
,并setValue(Object)
。 一个属性可以绑定和绑定单向与Property.bind(ObservableValue)
和Property.unbind()
。 可以使用bindBidirectional(Property)
和unbindBidirectional(Property)
创建和删除双向绑定。ObjectProperty
的上下文可以用ReadOnlyProperty.getBean()
和ReadOnlyProperty.getName()
读取。 对于专门的实现ObservableList
,ObservableSet
和ObservableMap
也报告集合内的变化,看到ListProperty
,SetProperty
和MapProperty
分别。- 从以下版本开始:
- JavaFX 2.0
- 另请参见:
-
ObservableObjectValue
,WritableObjectValue
,ReadOnlyObjectProperty
,Property
-
-
构造方法摘要
构造方法 Constructor 描述 ObjectProperty()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
bindBidirectional(Property<T> other)
在这个Property
和另一个之间创建双向绑定。void
setValue(T v)
设置包装的值。String
toString()
返回此ObjectProperty
对象的字符串表示形式。void
unbindBidirectional(Property<T> other)
删除此Property
之间的双向绑定。-
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 interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableObjectValue
get
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from interface javafx.beans.value.WritableObjectValue
get, set
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue
-
-
-
-
方法详细信息
-
setValue
public void setValue(T v)
设置包装的值。- Specified by:
-
setValue
在接口WritableValue<T>
- 参数
-
v
- 新的价值
-
bindBidirectional
public void bindBidirectional(Property<T> other)
在这个Property
之间创建一个双向绑定。 双向绑定与单向绑定无关。 因此,可以向具有双向绑定的属性添加单向绑定,反之亦然。 但是,这种做法是不鼓励的。可以有一个属性的多个双向绑定。
JavaFX双向绑定实现使用弱侦听器。 这意味着双向绑定不会阻止属性被垃圾回收。
- Specified by:
-
bindBidirectional
在接口Property<T>
- 参数
-
other
- 其他Property
-
unbindBidirectional
public void unbindBidirectional(Property<T> other)
删除此Property
和另一个之间的双向绑定。 如果不存在属性之间的双向绑定,则调用此方法不起作用。 可以通过第二个属性的调用解除绑定。 此代码将工作:property1.bindBirectional(property2); property2.unbindBidirectional(property1);
- Specified by:
-
unbindBidirectional
在接口Property<T>
- 参数
-
other
- 其他Property
-
toString
public String toString()
返回此ObjectProperty
对象的字符串表示形式。- 重写:
-
toString
在ReadOnlyObjectProperty<T>
- 结果
-
这个
ObjectProperty
对象的字符串表示形式。
-
-