Package com.macrofocus.properties
Interface MutableProperty<T>
-
- All Superinterfaces:
Property<T>
- All Known Subinterfaces:
MutableListProperty<T>
- All Known Implementing Classes:
AbstractMutableListProperty
,AbstractMutableProperty
,IntervalProperty
,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 void
bind(Property<T> source)
void
bindBidirectional(MutableProperty<T> source)
void
setValue(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)
-
-