Package com.macrofocus.properties
Interface MutableProperty<T>
-
- All Superinterfaces:
Property<T>
- All Known Subinterfaces:
MutableListProperty<T>
- All Known Implementing Classes:
AbstractMutableListProperty,AbstractMutableProperty,IntervalProperty,MutableAlgorithmOverrideProperty,MutableAlgorithmProperty,OverrideProperty,SimpleListProperty,SimpleProperty,SingleSelectionProperty,WrappedMutableProperty
@JsType public interface MutableProperty<T> extends Property<T>
Defines the requirements for a property that can change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbind(Property<T> source)voidbindBidirectional(MutableProperty<T> source)voidsetValue(T value)-
Methods inherited from interface com.macrofocus.properties.Property
addPropertyListener, addWeakPropertyListener, getValue, removePropertyListener
-
-
-
-
Method Detail
-
bindBidirectional
void bindBidirectional(MutableProperty<T> source)
-
setValue
void setValue(T value)
-
-