- java.lang.Object
-
- javafx.beans.binding.MapExpression<K,V>
-
- javafx.beans.property.ReadOnlyMapProperty<K,V>
-
- javafx.beans.property.MapProperty<K,V>
-
- 参数类型
-
K
-K
的关键元素的Map
-
V
-V
的值元素的Map
- All Implemented Interfaces:
-
Map<K,V>
,Observable
,Property<ObservableMap<K,V>>
,ReadOnlyProperty<K>
,ObservableMapValue<K,V>
,ObservableObjectValue<K>
,ObservableValue<K>
,WritableMapValue<K,V>
,WritableObjectValue<K>
,WritableValue<K>
,ObservableMap<K,V>
- 已知直接子类:
-
MapPropertyBase
public abstract class MapProperty<K,V> extends ReadOnlyMapProperty<K,V> implements Property<ObservableMap<K,V>>, WritableMapValue<K,V>
这个类提供了一个Property
的全面实现,包含一个ObservableMap
。 a的值MapProperty
可以获取和设置ObservableObjectValue.get()
,MapExpression.getValue()
,WritableObjectValue.set(Object)
,并setValue(javafx.collections.ObservableMap)
。 一个属性可以绑定和绑定单向与Property.bind(javafx.beans.value.ObservableValue)
和Property.unbind()
。 可以使用bindBidirectional(Property)
和unbindBidirectional(Property)
创建双向绑定。MapProperty
的上下文可以用ReadOnlyProperty.getBean()
和ReadOnlyProperty.getName()
读取。- 从以下版本开始:
- JavaFX 2.1
- 另请参见:
-
ObservableMap
,ObservableMapValue
,WritableMapValue
,ReadOnlyMapProperty
,Property
-
-
Property Summary
-
Properties inherited from class javafx.beans.binding.MapExpression
empty, size
-
-
构造方法摘要
构造方法 Constructor 描述 MapProperty()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 void
bindBidirectional(Property<ObservableMap<K,V>> other)
在这个Property
和另一个之间创建双向绑定。void
setValue(ObservableMap<K,V> v)
设置包装的值。String
toString()
返回此MapProperty
对象的字符串表示形式。void
unbindBidirectional(Property<ObservableMap<K,V>> other)
删除此Property
和另一个之间的双向绑定。-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entry, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, of, of, of, of, of, of, of, of, of, of, of, ofEntries, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class javafx.beans.binding.MapExpression
asString, clear, containsKey, containsValue, emptyProperty, entrySet, get, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, keySet, mapExpression, put, putAll, remove, size, sizeProperty, valueAt, valueAt, values
-
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.collections.ObservableMap
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 class javafx.beans.property.ReadOnlyMapProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectional
-
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(ObservableMap<K,V> v)
设置包装的值。- Specified by:
-
setValue
在接口WritableValue<K>
- 参数
-
v
- 新的价值
-
bindBidirectional
public void bindBidirectional(Property<ObservableMap<K,V>> other)
在这个Property
和另一个之间创建双向绑定。 双向绑定与单向绑定无关。 因此,可以向具有双向绑定的属性添加单向绑定,反之亦然。 但是,这种做法是不鼓励的。可以有一个属性的多个双向绑定。
JavaFX双向绑定实现使用弱侦听器。 这意味着双向绑定不会阻止属性被垃圾回收。
- Specified by:
-
bindBidirectional
在接口Property<K>
- 参数
-
other
- 其他Property
-
unbindBidirectional
public void unbindBidirectional(Property<ObservableMap<K,V>> other)
删除这个Property
和另一个之间的双向绑定。 如果不存在属性之间的双向绑定,则调用此方法不起作用。 可以通过第二个属性的调用解除绑定。 此代码将工作:property1.bindBirectional(property2); property2.unbindBidirectional(property1);
- Specified by:
-
unbindBidirectional
在接口Property<K>
- 参数
-
other
- 其他Property
-
toString
public String toString()
返回此MapProperty
对象的字符串表示形式。- 重写:
-
toString
在ReadOnlyMapProperty<K,V>
- 结果
-
这个
MapProperty
对象的字符串表示形式。
-
-