Class AbstractMutableProperty<T>
- java.lang.Object
-
- com.macrofocus.properties.implementation.AbstractProperty<T>
-
- com.macrofocus.properties.implementation.AbstractMutableProperty<T>
-
- All Implemented Interfaces:
MutableProperty<T>
,Property<T>
- Direct Known Subclasses:
IntervalProperty
,OverrideProperty
,SimpleProperty
,SingleSelectionProperty
public abstract class AbstractMutableProperty<T> extends AbstractProperty<T> implements MutableProperty<T>
-
-
Constructor Summary
Constructors Constructor Description AbstractMutableProperty()
-
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.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>
-
-