K - the type of the key elements of the MapV - the type of the value elements of the Mappublic abstract class MapPropertyBase<K,V> extends MapProperty<K,V>
MapPropertyBase is the base class for a property
wrapping an ObservableMap.
It provides all the functionality required for a property except for the
ReadOnlyProperty.getBean() and ReadOnlyProperty.getName() methods, which must be implemented
by extending classes.ObservableMap,
MapProperty| Type | Property and Description |
|---|---|
ReadOnlyBooleanProperty |
empty
A boolean property that is
true, if the map is empty. |
ReadOnlyIntegerProperty |
size
An integer property that represents the size of the map.
|
| Constructor and Description |
|---|
MapPropertyBase()
The Constructor of
MapPropertyBase |
MapPropertyBase(ObservableMap<K,V> initialValue)
The constructor of the
MapPropertyBase. |
| Modifier and Type | Method and Description |
|---|---|
void |
addListener(ChangeListener<? super ObservableMap<K,V>> listener)
Adds a
ChangeListener which will be notified whenever the value
of the ObservableValue changes. |
void |
addListener(InvalidationListener listener)
Adds an
InvalidationListener which will be notified whenever the
Observable becomes invalid. |
void |
addListener(MapChangeListener<? super K,? super V> listener)
Add a listener to this observable map.
|
void |
bind(ObservableValue<? extends ObservableMap<K,V>> newObservable)
Create a unidirection binding for this
Property. |
ReadOnlyBooleanProperty |
emptyProperty()
A boolean property that is
true, if the map is empty. |
protected void |
fireValueChangedEvent()
|
protected void |
fireValueChangedEvent(MapChangeListener.Change<? extends K,? extends V> change)
|
ObservableMap<K,V> |
get()
Get the wrapped value.
|
protected void |
invalidated()
The method
invalidated() can be overridden to receive
invalidation notifications. |
boolean |
isBound()
Can be used to check, if a
Property is bound. |
void |
removeListener(ChangeListener<? super ObservableMap<K,V>> listener)
Removes the given listener from the list of listeners, that are notified
whenever the value of the
ObservableValue changes. |
void |
removeListener(InvalidationListener listener)
Removes the given listener from the list of listeners, that are notified
whenever the value of the
Observable becomes invalid. |
void |
removeListener(MapChangeListener<? super K,? super V> listener)
Tries to removed a listener from this observable list.
|
void |
set(ObservableMap<K,V> newValue)
Set the wrapped value.
|
ReadOnlyIntegerProperty |
sizeProperty()
An integer property that represents the size of the map.
|
String |
toString()
Returns a string representation of this
MapPropertyBase object. |
void |
unbind()
Remove the unidirectional binding for this
Property. |
bindBidirectional, setValue, unbindBidirectionalbindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalasString, clear, containsKey, containsValue, entrySet, get, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, keySet, mapExpression, put, putAll, remove, size, valueAt, valueAt, valuesclone, finalize, getClass, notify, notifyAll, wait, wait, waitgetBean, getNamegetValuegetValueclear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, valuespublic ReadOnlyIntegerProperty sizeProperty
sizeProperty in class MapExpression<K,V>MapExpression.getSize()public ReadOnlyBooleanProperty emptyProperty
emptyProperty in class MapExpression<K,V>MapExpression.isEmpty()public MapPropertyBase()
MapPropertyBasepublic MapPropertyBase(ObservableMap<K,V> initialValue)
MapPropertyBase.initialValue - the initial value of the wrapped valuepublic ReadOnlyIntegerProperty sizeProperty()
MapExpressionsizeProperty in class MapExpression<K,V>MapExpression.getSize()public ReadOnlyBooleanProperty emptyProperty()
MapExpressiontrue, if the map is empty.emptyProperty in class MapExpression<K,V>MapExpression.isEmpty()public void addListener(InvalidationListener listener)
ObservableInvalidationListener which will be notified whenever the
Observable becomes invalid. If the same
listener is added more than once, then it will be notified more than
once. That is, no check is made to ensure uniqueness.
Note that the same actual InvalidationListener instance may be
safely registered for different Observables.
The Observable stores a strong reference to the listener
which will prevent the listener from being garbage collected and may
result in a memory leak. It is recommended to either unregister a
listener by calling removeListener after use or to use an instance of
WeakInvalidationListener avoid this situation.
listener - The listener to registerObservable.removeListener(InvalidationListener)public void removeListener(InvalidationListener listener)
ObservableObservable becomes invalid.
If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
listener - The listener to removeObservable.addListener(InvalidationListener)public void addListener(ChangeListener<? super ObservableMap<K,V>> listener)
ObservableValueChangeListener which will be notified whenever the value
of the ObservableValue changes. If the same listener is added
more than once, then it will be notified more than once. That is, no
check is made to ensure uniqueness.
Note that the same actual ChangeListener instance may be safely
registered for different ObservableValues.
The ObservableValue stores a strong reference to the listener
which will prevent the listener from being garbage collected and may
result in a memory leak. It is recommended to either unregister a
listener by calling removeListener after use or to use an instance of
WeakChangeListener avoid this situation.
listener - The listener to registerObservableValue.removeListener(ChangeListener)public void removeListener(ChangeListener<? super ObservableMap<K,V>> listener)
ObservableValueObservableValue changes.
If the given listener has not been previously registered (i.e. it was never added) then this method call is a no-op. If it had been previously added then it will be removed. If it had been added more than once, then only the first occurrence will be removed.
listener - The listener to removeObservableValue.addListener(ChangeListener)public void addListener(MapChangeListener<? super K,? super V> listener)
ObservableMaplistener - the listener for listening to the list changespublic void removeListener(MapChangeListener<? super K,? super V> listener)
ObservableMaplistener - a listener to removeprotected void fireValueChangedEvent()
InvalidationListeners,
ChangeListeners, and
MapChangeListener.
This method is called when the value is changed, either manually by
calling set(javafx.collections.ObservableMap) or in case of a bound property, if the
binding becomes invalid.protected void fireValueChangedEvent(MapChangeListener.Change<? extends K,? extends V> change)
InvalidationListeners,
ChangeListeners, and
MapChangeListener.
This method is called when the content of the list changes.change - the change that needs to be propagatedprotected void invalidated()
invalidated() can be overridden to receive
invalidation notifications. This is the preferred option in
Objects defining the property, because it requires less memory.
The default implementation is empty.public ObservableMap<K,V> get()
WritableObjectValueWritableValue.getValue().
This method exists only to align WritableObjectValue API with
WritableBooleanValue and subclasses of WritableNumberValue
public void set(ObservableMap<K,V> newValue)
WritableObjectValueWritableValue.setValue(java.lang.Object)newValue - The new valueWritableObjectValue.get()public boolean isBound()
PropertyProperty is bound.true if the Property is bound, false
otherwiseProperty.bind(javafx.beans.value.ObservableValue)public void bind(ObservableValue<? extends ObservableMap<K,V>> newObservable)
PropertyProperty.
Note that JavaFX has all the bind calls implemented through weak listeners. This means the bound property can be garbage collected and stopped from being updated.
newObservable - The observable this Property should be bound to.public void unbind()
PropertyProperty.
If the Property is not bound, calling this method has no effect.public String toString()
MapPropertyBase object.toString in class MapProperty<K,V>MapPropertyBase object.Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.