Uses of Interface
javafx.beans.Observable
Package | Description |
---|---|
javafx.beans |
The package
javafx.beans contains the interfaces that
define the most generic form of observability. |
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
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.collections |
Contains the essential JavaFX collections and collection utilities
|
javafx.collections.transformation |
Provides JavaFX collections that wrap and transform (for example, sort
or filter) other JavaFX collections.
|
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
-
Uses of Observable in javafx.beans
Methods in javafx.beans with parameters of type Observable Modifier and Type Method Description void
InvalidationListener. invalidated(Observable observable)
This method needs to be provided by an implementation ofInvalidationListener
.void
WeakInvalidationListener. invalidated(Observable observable)
This method needs to be provided by an implementation ofInvalidationListener
. -
Uses of Observable in javafx.beans.binding
Subinterfaces of Observable in javafx.beans.binding Modifier and Type Interface Description interface
Binding<T>
ABinding
calculates a value that depends on one or more sources.interface
NumberBinding
A tagging interface to mark all Bindings that wrap a number-value.interface
NumberExpression
NumberExpression
is anObservableNumberValue
plus additional convenience methods to generate bindings in a fluent style.Classes in javafx.beans.binding that implement Observable Modifier and Type Class Description class
BooleanBinding
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.class
BooleanExpression
BooleanExpression
is anObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.class
DoubleBinding
Base class that provides most of the functionality needed to implement aBinding
of adouble
value.class
DoubleExpression
DoubleExpression
is anObservableDoubleValue
plus additional convenience methods to generate bindings in a fluent style.class
FloatBinding
Base class that provides most of the functionality needed to implement aBinding
of afloat
value.class
FloatExpression
FloatExpression
is anObservableFloatValue
plus additional convenience methods to generate bindings in a fluent style.class
IntegerBinding
Base class that provides most of the functionality needed to implement aBinding
of anint
value.class
IntegerExpression
IntegerExpression
is anObservableIntegerValue
plus additional convenience methods to generate bindings in a fluent style.class
ListBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableList
.class
ListExpression<E>
ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.class
LongBinding
Base class that provides most of the functionality needed to implement aBinding
of along
value.class
LongExpression
LongExpression
is anObservableLongValue
plus additional convenience methods to generate bindings in a fluent style.class
MapBinding<K,V>
Base class that provides most of the functionality needed to implement aBinding
of anObservableMap
.class
MapExpression<K,V>
MapExpression
is anObservableMapValue
plus additional convenience methods to generate bindings in a fluent style.class
NumberExpressionBase
NumberExpressionBase
contains convenience methods to generate bindings in a fluent style, that are common to all NumberExpression subclasses.class
ObjectBinding<T>
Base class that provides most of the functionality needed to implement aBinding
of anObject
.class
ObjectExpression<T>
ObjectExpression
is anObservableObjectValue
plus additional convenience methods to generate bindings in a fluent style.class
SetBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableSet
.class
SetExpression<E>
SetExpression
is anObservableSetValue
plus additional convenience methods to generate bindings in a fluent style.class
StringBinding
Base class that provides most of the functionality needed to implement aBinding
of aString
.class
StringExpression
StringExpression
is anObservableStringValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type Observable Modifier and Type Method Description protected void
BooleanBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
DoubleBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
FloatBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
IntegerBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
ListBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
LongBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
MapBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
ObjectBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
SetBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.protected void
StringBinding. bind(Observable... dependencies)
Start observing the dependencies for changes.static BooleanBinding
Bindings. createBooleanBinding(Callable<Boolean> func, Observable... dependencies)
Helper function to create a customBooleanBinding
.static DoubleBinding
Bindings. createDoubleBinding(Callable<Double> func, Observable... dependencies)
Helper function to create a customDoubleBinding
.static FloatBinding
Bindings. createFloatBinding(Callable<Float> func, Observable... dependencies)
Helper function to create a customFloatBinding
.static IntegerBinding
Bindings. createIntegerBinding(Callable<Integer> func, Observable... dependencies)
Helper function to create a customIntegerBinding
.static LongBinding
Bindings. createLongBinding(Callable<Long> func, Observable... dependencies)
Helper function to create a customLongBinding
.static <T> ObjectBinding<T>
Bindings. createObjectBinding(Callable<T> func, Observable... dependencies)
Helper function to create a customObjectBinding
.static StringBinding
Bindings. createStringBinding(Callable<String> func, Observable... dependencies)
Helper function to create a customStringBinding
.protected void
BooleanBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
DoubleBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
FloatBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
IntegerBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
ListBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
LongBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
MapBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
ObjectBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
SetBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes.protected void
StringBinding. unbind(Observable... dependencies)
Stop observing the dependencies for changes. -
Uses of Observable in javafx.beans.property
Subinterfaces of Observable in javafx.beans.property Modifier and Type Interface Description interface
Property<T>
Generic interface that defines the methods common to all (writable) properties independent of their type.interface
ReadOnlyProperty<T>
Generic interface that defines the methods common to all readable properties independent of their type.Classes in javafx.beans.property that implement Observable Modifier and Type Class Description class
BooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value.class
BooleanPropertyBase
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
DoubleProperty
This class defines aProperty
wrapping adouble
value.class
DoublePropertyBase
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
FloatProperty
This class defines aProperty
wrapping afloat
value.class
FloatPropertyBase
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
IntegerProperty
This class defines aProperty
wrapping anint
value.class
IntegerPropertyBase
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.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
LongProperty
This class defines aProperty
wrapping along
value.class
LongPropertyBase
The classLongPropertyBase
is the base class for a property wrapping along
value.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
ReadOnlyBooleanProperty
Superclass for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanPropertyBase
Base class for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyDoubleProperty
Superclass for all readonly properties wrapping adouble
.class
ReadOnlyDoublePropertyBase
Base class for all readonly properties wrapping adouble
.class
ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyFloatProperty
Superclass for all readonly properties wrapping afloat
.class
ReadOnlyFloatPropertyBase
Base class for all readonly properties wrapping afloat
.class
ReadOnlyFloatWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyIntegerProperty
Superclass for all readonly properties wrapping anint
.class
ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping anint
.class
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyListProperty<E>
Superclass for all readonly properties wrapping anObservableList
.class
ReadOnlyListPropertyBase<E>
Base class for all readonly properties wrapping anObservableList
.class
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyLongProperty
Superclass for all readonly properties wrapping along
.class
ReadOnlyLongPropertyBase
Base class for all readonly properties wrapping along
.class
ReadOnlyLongWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyMapProperty<K,V>
Superclass for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapPropertyBase<K,V>
Base class for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapWrapper<K,V>
This class provides a convenient class to define read-only properties.class
ReadOnlyObjectProperty<T>
Superclass for all readonly properties wrapping an arbitraryObject
.class
ReadOnlyObjectPropertyBase<T>
Base class for all readonly properties wrapping an arbitraryObject
.class
ReadOnlyObjectWrapper<T>
This class provides a convenient class to define read-only properties.class
ReadOnlySetProperty<E>
Superclass for all readonly properties wrapping anObservableSet
.class
ReadOnlySetPropertyBase<E>
Base class for all readonly properties wrapping anObservableSet
.class
ReadOnlySetWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyStringProperty
Superclass for all readonly properties wrapping anString
.class
ReadOnlyStringPropertyBase
Base class for all readonly properties wrapping aString
.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
SimpleBooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value.class
SimpleDoubleProperty
This class provides a full implementation of aProperty
wrapping adouble
value.class
SimpleFloatProperty
This class provides a full implementation of aProperty
wrapping afloat
value.class
SimpleIntegerProperty
This class provides a full implementation of aProperty
wrapping aint
value.class
SimpleListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
SimpleLongProperty
This class provides a full implementation of aProperty
wrapping along
value.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 Observable in javafx.beans.property.adapter
Subinterfaces of Observable in javafx.beans.property.adapter Modifier and Type Interface Description interface
JavaBeanProperty<T>
JavaBeanProperty
is the super interface of all adapters between writable Java Bean properties and JavaFX properties.interface
ReadOnlyJavaBeanProperty<T>
JavaBeanProperty
is the super interface of all adapters between readonly Java Bean properties and JavaFX properties.Classes in javafx.beans.property.adapter that implement Observable Modifier and Type Class Description class
JavaBeanBooleanProperty
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.class
JavaBeanDoubleProperty
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.class
JavaBeanFloatProperty
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.class
JavaBeanIntegerProperty
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.class
JavaBeanLongProperty
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.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
.class
ReadOnlyJavaBeanBooleanProperty
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
.class
ReadOnlyJavaBeanDoubleProperty
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.class
ReadOnlyJavaBeanFloatProperty
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.class
ReadOnlyJavaBeanIntegerProperty
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.class
ReadOnlyJavaBeanLongProperty
AReadOnlyJavaBeanLongProperty
provides an adapter between a regular read only Java Bean property of typelong
orLong
and a JavaFXReadOnlyLongProperty
.class
ReadOnlyJavaBeanObjectProperty<T>
AReadOnlyJavaBeanObjectProperty
provides an adapter between a regular read only Java Bean property ofT
and a JavaFXReadOnlyObjectProperty
.class
ReadOnlyJavaBeanStringProperty
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of Observable in javafx.beans.value
Subinterfaces of Observable in javafx.beans.value Modifier and Type Interface Description interface
ObservableBooleanValue
An observable boolean value.interface
ObservableDoubleValue
An observable double value.interface
ObservableFloatValue
An observable float value.interface
ObservableIntegerValue
An observable integer value.interface
ObservableListValue<E>
An observable reference to anObservableList
.interface
ObservableLongValue
An observable long value.interface
ObservableMapValue<K,V>
An observable reference to anObservableMap
.interface
ObservableNumberValue
A common interface of all sub-interfaces ofObservableValue
that wrap a number.interface
ObservableObjectValue<T>
An observable typedObject
value.interface
ObservableSetValue<E>
An observable reference to anObservableSet
.interface
ObservableStringValue
An observable String value.interface
ObservableValue<T>
AnObservableValue
is an entity that wraps a value and allows to observe the value for changes.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
.Classes in javafx.beans.value that implement Observable Modifier and Type Class Description class
ObservableValueBase<T>
A convenience class for creating implementations ofObservableValue
. -
Uses of Observable in javafx.collections
Subinterfaces of Observable in javafx.collections Modifier and Type Interface Description interface
ObservableArray<T extends ObservableArray<T>>
ObservableArray
is an array that allows listeners to track changes when they occur.interface
ObservableFloatArray
ObservableFloatArray
is afloat[]
array that allows listeners to track changes when they occur.interface
ObservableIntegerArray
ObservableIntegerArray
is anint[]
array that allows listeners to track changes when they occur.interface
ObservableList<E>
A list that allows listeners to track changes when they occur.interface
ObservableMap<K,V>
A map that allows observers to track changes when they occur.interface
ObservableSet<E>
A set that allows observers to track changes when they occur.Classes in javafx.collections that implement Observable Modifier and Type Class Description class
ModifiableObservableListBase<E>
Abstract class that serves as a base class forObservableList
implementations that are modifiable.class
ObservableArrayBase<T extends ObservableArray<T>>
Abstract class that serves as a base class forObservableArray
implementations.class
ObservableListBase<E>
Abstract class that serves as a base class forObservableList
implementations. -
Uses of Observable in javafx.collections.transformation
Classes in javafx.collections.transformation that implement Observable Modifier and Type Class Description class
FilteredList<E>
Wraps an ObservableList and filters its content using the provided Predicate.class
SortedList<E>
Wraps an ObservableList and sorts its content.class
TransformationList<E,F>
A base class for all lists that wrap another list in a way that changes (transforms) the wrapped list's elements, order, size, or structure. -
Uses of Observable in javafx.css
Classes in javafx.css that implement Observable Modifier and Type Class Description class
SimpleStyleableBooleanProperty
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableDoubleProperty
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableFloatProperty
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableIntegerProperty
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableLongProperty
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.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
StyleableBooleanProperty
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableDoubleProperty
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableFloatProperty
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableIntegerProperty
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableLongProperty
This class extendsLongPropertyBase
and provides a partial 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
. -
Uses of Observable in javafx.scene.control
Subinterfaces of Observable in javafx.scene.control Modifier and Type Interface Description protected static interface
TextInputControl.Content
Interface representing a text input's content. -
Uses of Observable in javafx.scene.shape
Subinterfaces of Observable in javafx.scene.shape Modifier and Type Interface Description interface
ObservableFaceArray
ObservableFaceArray
is anint[]
array that allows listeners to track changes when they occur.