Class AbstractMutableListProperty<T>
- java.lang.Object
-
- com.macrofocus.properties.implementation.AbstractProperty<T[]>
-
- com.macrofocus.properties.implementation.AbstractListProperty<T>
-
- com.macrofocus.properties.implementation.AbstractMutableListProperty<T>
-
- All Implemented Interfaces:
ListProperty<T>
,MutableListProperty<T>
,MutableProperty<T[]>
,Property<T[]>
- Direct Known Subclasses:
SimpleListProperty
public abstract class AbstractMutableListProperty<T> extends AbstractListProperty<T> implements MutableListProperty<T>
-
-
Constructor Summary
Constructors Constructor Description AbstractMutableListProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
bind(Property<T[]> source)
void
bindBidirectional(MutableProperty<T[]> source)
-
Methods inherited from class com.macrofocus.properties.implementation.AbstractProperty
addPropertyListener, addWeakPropertyListener, notifyPropertyChanged, removePropertyListener
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.macrofocus.properties.MutableListProperty
append
-
Methods inherited from interface com.macrofocus.properties.MutableProperty
setValue
-
Methods inherited from interface com.macrofocus.properties.Property
addPropertyListener, addWeakPropertyListener, getValue, removePropertyListener
-
-
-
-
Method Detail
-
bind
public void bind(Property<T[]> source)
- Specified by:
bind
in interfaceMutableProperty<T>
-
bindBidirectional
public void bindBidirectional(MutableProperty<T[]> source)
- Specified by:
bindBidirectional
in interfaceMutableProperty<T>
-
-