- 
- All Superinterfaces:
- WritableValue<T>
 - All Known Subinterfaces:
- WritableListValue<E>,- WritableMapValue<K,V>,- WritableSetValue<E>,- WritableStringValue
 - All Known Implementing Classes:
- JavaBeanObjectProperty,- JavaBeanStringProperty,- ListProperty,- ListPropertyBase,- MapProperty,- MapPropertyBase,- ObjectProperty,- ObjectPropertyBase,- ReadOnlyListWrapper,- ReadOnlyMapWrapper,- ReadOnlyObjectWrapper,- ReadOnlySetWrapper,- ReadOnlyStringWrapper,- SetProperty,- SetPropertyBase,- SimpleListProperty,- SimpleMapProperty,- SimpleObjectProperty,- SimpleSetProperty,- SimpleStringProperty,- SimpleStyleableObjectProperty,- SimpleStyleableStringProperty,- StringProperty,- StringPropertyBase,- StyleableObjectProperty,- StyleableStringProperty
 
 
 public interface WritableObjectValue<T> extends WritableValue<T> A writable typed value.- Since:
- JavaFX 2.0
- See Also:
- WritableValue
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Tget()Get the wrapped value.voidset(T value)Set the wrapped value.- 
Methods inherited from interface javafx.beans.value.WritableValuegetValue, setValue
 
- 
 
- 
- 
- 
Method Detail- 
getT 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
 
 - 
setvoid set(T value) Set the wrapped value. Should be equivalent toWritableValue.setValue(java.lang.Object)- Parameters:
- value- The new value
- See Also:
- get()
 
 
- 
 
-