Interface WritableObjectValue<T>
All Superinterfaces:
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>
Since:
JavaFX 2.0
See Also:
-
Method Summary
All MethodsInstance MethodsAbstract Methods Modifier and Type Method and Description Tget()Get the wrapped value.voidset(T value)Set the wrapped value.-
Methods inherited from interface javafx.beans.value.WritableValue
getValue, setValue
-
-
Method Detail
-
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 ofWritableNumberValueReturns:
The current value
-
set
void set(T value)
Set the wrapped value. Should be equivalent toWritableValue.setValue(java.lang.Object)Parameters:
value- The new valueSee Also:
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.