- java.lang.Object
-
- javafx.beans.binding.SetExpression<E>
-
- javafx.beans.property.ReadOnlySetProperty<E>
-
- javafx.beans.property.SetProperty<E>
-
- 参数类型
-
E
-Set
元素的类型
- All Implemented Interfaces:
-
Iterable<E>
,Collection<E>
,Set<E>
,Observable
,Property<ObservableSet<E>>
,ReadOnlyProperty<E>
,ObservableObjectValue<E>
,ObservableSetValue<E>
,ObservableValue<E>
,WritableObjectValue<E>
,WritableSetValue<E>
,WritableValue<E>
,ObservableSet<E>
- 已知直接子类:
-
SetPropertyBase
public abstract class SetProperty<E> extends ReadOnlySetProperty<E> implements Property<ObservableSet<E>>, WritableSetValue<E>
这个类提供了一个Property
的全面实现,包装了一个ObservableSet
。 a的值SetProperty
可以获取和设置ObservableObjectValue.get()
,SetExpression.getValue()
,WritableObjectValue.set(Object)
,并setValue(ObservableSet)
。 可以使用Property.bind(javafx.beans.value.ObservableValue)
和Property.unbind()
绑定和取消绑定一个属性。 可以使用bindBidirectional(Property)
和unbindBidirectional(Property)
创建和删除双向绑定。SetProperty
的上下文可以用ReadOnlyProperty.getBean()
和ReadOnlyProperty.getName()
读取。- 从以下版本开始:
- JavaFX 2.1
- 另请参见:
-
ObservableSet
,ObservableSetValue
,WritableSetValue
,ReadOnlySetProperty
,Property
-
-
Property Summary
-
Properties inherited from class javafx.beans.binding.SetExpression
empty, size
-
-
构造方法摘要
构造方法 Constructor 描述 SetProperty()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
bindBidirectional(Property<ObservableSet<E>> other)
在这个Property
之间创建一个双向绑定。void
setValue(ObservableSet<E> v)
设置包装的值。String
toString()
返回此SetProperty
对象的字符串表示形式。void
unbindBidirectional(Property<ObservableSet<E>> other)
删除此Property
和另一个之间的双向绑定。-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableObjectValue
get
-
Methods inherited from interface javafx.collections.ObservableSet
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from class javafx.beans.property.ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectional
-
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, of, of, of, of, of, of, of, of, of, of, of, of, remove, removeAll, retainAll, size, spliterator, toArray, toArray
-
Methods inherited from class javafx.beans.binding.SetExpression
add, addAll, asString, clear, contains, containsAll, emptyProperty, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, sizeProperty, toArray, toArray
-
Methods inherited from interface javafx.beans.value.WritableObjectValue
get, set
-
Methods inherited from interface javafx.beans.value.WritableValue
getValue
-
-
-
-
方法详细信息
-
setValue
public void setValue(ObservableSet<E> v)
设置包装的值。- Specified by:
-
setValue
在接口WritableValue<E>
- 参数
-
v
- 新的价值
-
bindBidirectional
public void bindBidirectional(Property<ObservableSet<E>> other)
在这个Property
和另一个之间创建双向绑定。 双向绑定与单向绑定无关。 因此,可以向具有双向绑定的属性添加单向绑定,反之亦然。 但是,这种做法是不鼓励的。可以有一个属性的多个双向绑定。
JavaFX双向绑定实现使用弱侦听器。 这意味着双向绑定不会阻止属性被垃圾回收。
- Specified by:
-
bindBidirectional
在接口Property<E>
- 参数
-
other
- 其他Property
-
unbindBidirectional
public void unbindBidirectional(Property<ObservableSet<E>> other)
删除此Property
与另一个之间的双向绑定。 如果不存在属性之间的双向绑定,则调用此方法不起作用。 可以通过第二个属性的调用解除绑定。 此代码将工作:property1.bindBirectional(property2); property2.unbindBidirectional(property1);
- Specified by:
-
unbindBidirectional
在接口Property<E>
- 参数
-
other
- 其他Property
-
toString
public String toString()
返回此SetProperty
对象的字符串表示形式。- 重写:
-
toString
类ReadOnlySetProperty<E>
- 结果
-
这个
SetProperty
对象的字符串表示形式。
-
-