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,MutableAlgorithmProperty,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 voidbind(Property<T> source)voidbindBidirectional(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:
bindin interfaceMutableProperty<T>
-
bindBidirectional
public void bindBidirectional(MutableProperty<T> source)
- Specified by:
bindBidirectionalin interfaceMutableProperty<T>
-
-