Package javafx.beans.value
Interface WritableObjectValue<T>
- Record Components:
T- The type of the wrapped value
- All Superinterfaces:
WritableValue<T>
- All Known Subinterfaces:
WritableListValue<E>,WritableMapValue<K,,V> WritableStringValue
- All Known Implementing Classes:
ListProperty,ListPropertyBase,ObjectProperty,ObjectPropertyBase,ReadOnlyObjectWrapper,SimpleListProperty,SimpleObjectProperty,SimpleStringProperty,StringProperty,StringPropertyBase,StyleableObjectProperty
A writable typed value.
- Since:
- JavaFX 2.0
- See Also:
-
Method Summary
Methods inherited from interface javafx.beans.value.WritableValue
getValue, setValue
-
Method Details
-
get
T get()Get the wrapped value. This must be identical to the value returned fromWritableValue.getValue().This method exists only to align WritableObjectValue API with
WritableBooleanValueand subclasses ofWritableNumberValue- Returns:
- The current value
-
set
Set the wrapped value. Should be equivalent toWritableValue.setValue(java.lang.Object)- Parameters:
value- The new value- See Also:
-