Uses of Interface
javafx.beans.value.WritableObjectValue
Package | Description |
---|---|
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter |
Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property . |
javafx.beans.value |
The package
javafx.beans.value contains the two
fundamental interfaces ObservableValue and WritableValue and all of its sub-interfaces. |
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
-
Uses of WritableObjectValue in javafx.beans.property
Classes in javafx.beans.property that implement WritableObjectValue Modifier and Type Class Description class
ListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
ListPropertyBase<E>
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
MapProperty<K,V>
This class provides a full implementation of aProperty
wrapping anObservableMap
.class
MapPropertyBase<K,V>
The classMapPropertyBase
is the base class for a property wrapping anObservableMap
.class
ObjectProperty<T>
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
ObjectPropertyBase<T>
The classObjectPropertyBase
is the base class for a property wrapping an arbitraryObject
.class
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyMapWrapper<K,V>
This class provides a convenient class to define read-only properties.class
ReadOnlyObjectWrapper<T>
This class provides a convenient class to define read-only properties.class
ReadOnlySetWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyStringWrapper
This class provides a convenient class to define read-only properties.class
SetProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
SetPropertyBase<E>
The classSetPropertyBase
is the base class for a property wrapping anObservableSet
.class
SimpleListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
SimpleMapProperty<K,V>
This class provides a full implementation of aProperty
wrapping anObservableMap
.class
SimpleObjectProperty<T>
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
SimpleSetProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
SimpleStringProperty
This class provides a full implementation of aProperty
wrapping aString
value.class
StringProperty
This class provides a full implementation of aProperty
wrapping aString
value.class
StringPropertyBase
The classStringPropertyBase
is the base class for a property wrapping aString
value. -
Uses of WritableObjectValue in javafx.beans.property.adapter
Classes in javafx.beans.property.adapter that implement WritableObjectValue Modifier and Type Class Description class
JavaBeanObjectProperty<T>
AJavaBeanObjectProperty
provides an adapter between a regular Java Bean property of typeT
and a JavaFXObjectProperty<T>
.class
JavaBeanStringProperty
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
. -
Uses of WritableObjectValue in javafx.beans.value
Subinterfaces of WritableObjectValue in javafx.beans.value Modifier and Type Interface Description interface
WritableListValue<E>
A writable reference to anObservableList
.interface
WritableMapValue<K,V>
A writable reference to anObservableMap
.interface
WritableSetValue<E>
A writable reference to anObservableSet
.interface
WritableStringValue
A writable String. -
Uses of WritableObjectValue in javafx.css
Classes in javafx.css that implement WritableObjectValue Modifier and Type Class Description class
SimpleStyleableObjectProperty<T>
This class extendsSimpleObjectProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableStringProperty
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
StyleableObjectProperty<T>
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableStringProperty
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
.