Uses of Interface
javafx.beans.Observable
Package
Description
Provides the application life-cycle classes.
The package
javafx.beans
contains the interfaces that
define the most generic form of observability.Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property
.The package
javafx.beans.value
contains the two
fundamental interfaces ObservableValue
and WritableValue
and all of its sub-interfaces.Contains the essential JavaFX collections and collection utilities
Provides JavaFX collections that wrap and transform (for example, sort
or filter) other JavaFX collections.
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
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.
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
-
Uses of Observable in javafx.application
Modifier and TypeInterfaceDescriptionstatic interface
Contains UI preferences of the current platform. -
Uses of Observable in javafx.beans
Modifier and TypeMethodDescriptionvoid
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
Modifier and TypeInterfaceDescriptioninterface
Binding<T>
ABinding
calculates a value that depends on one or more sources.interface
A tagging interface to mark all Bindings that wrap a number-value.interface
NumberExpression
is anObservableNumberValue
plus additional convenience methods to generate bindings in a fluent style.Modifier and TypeClassDescriptionclass
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.class
BooleanExpression
is anObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of adouble
value.class
DoubleExpression
is anObservableDoubleValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of afloat
value.class
FloatExpression
is anObservableFloatValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of anint
value.class
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
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of along
value.class
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
contains convenience methods to generate bindings in a fluent style, that are common to all NumberExpression subclasses.class
Base class that provides most of the functionality needed to implement aBinding
of anObject
.class
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
is anObservableSetValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of aString
.class
StringExpression
is anObservableStringValue
plus additional convenience methods to generate bindings in a fluent style.Modifier and TypeMethodDescriptionprotected final void
BooleanBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
DoubleBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
FloatBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
IntegerBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
ListBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
LongBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
MapBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
ObjectBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final void
SetBinding.bind
(Observable... dependencies) Start observing the dependencies for changes.protected final 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 final void
BooleanBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
DoubleBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
FloatBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
IntegerBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
ListBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
LongBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
MapBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
ObjectBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
SetBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes.protected final void
StringBinding.unbind
(Observable... dependencies) Stop observing the dependencies for changes. -
Uses of Observable in javafx.beans.property
Modifier and TypeInterfaceDescriptioninterface
Property<T>
Generic interface that defines the methods common to all (writable) properties, independent of their type.interface
Generic interface that defines the methods common to all readable properties independent of their type.Modifier and TypeClassDescriptionclass
This class provides a full implementation of aProperty
wrapping aboolean
value.class
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
This class defines aProperty
wrapping adouble
value.class
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
This class defines aProperty
wrapping afloat
value.class
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
This class defines aProperty
wrapping anint
value.class
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
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
This class defines aProperty
wrapping along
value.class
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
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
The classObjectPropertyBase
is the base class for a property wrapping an arbitraryObject
.class
Superclass for all readonly properties wrapping aboolean
.class
Base class for all readonly properties wrapping aboolean
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping adouble
.class
Base class for all readonly properties wrapping adouble
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping afloat
.class
Base class for all readonly properties wrapping afloat
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anint
.class
Base class for all readonly properties wrapping anint
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anObservableList
.class
Base class for all readonly properties wrapping anObservableList
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping along
.class
Base class for all readonly properties wrapping along
.class
This class provides a convenient class to define read-only properties.class
ReadOnlyMapProperty<K,
V> Superclass for all readonly properties wrapping anObservableMap
.class
Base class for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapWrapper<K,
V> This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping an arbitraryObject
.class
Base class for all readonly properties wrapping an arbitraryObject
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anObservableSet
.class
Base class for all readonly properties wrapping anObservableSet
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anString
.class
Base class for all readonly properties wrapping aString
.class
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
The classSetPropertyBase
is the base class for a property wrapping anObservableSet
.class
This class provides a full implementation of aProperty
wrapping aboolean
value.class
This class provides a full implementation of aProperty
wrapping adouble
value.class
This class provides a full implementation of aProperty
wrapping afloat
value.class
This class provides a full implementation of aProperty
wrapping aint
value.class
This class provides a full implementation of aProperty
wrapping anObservableList
.class
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
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
This class provides a full implementation of aProperty
wrapping aString
value.class
This class provides a full implementation of aProperty
wrapping aString
value.class
The classStringPropertyBase
is the base class for a property wrapping aString
value. -
Uses of Observable in javafx.beans.property.adapter
Modifier and TypeInterfaceDescriptioninterface
JavaBeanProperty
is the super interface of all adapters between writable Java Bean properties and JavaFX properties.interface
JavaBeanProperty
is the super interface of all adapters between readonly Java Bean properties and JavaFX properties.Modifier and TypeClassDescriptionfinal class
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.final class
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.final class
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.final class
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.final class
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.final class
AJavaBeanObjectProperty
provides an adapter between a regular Java Bean property of typeT
and a JavaFXObjectProperty<T>
.final class
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
.final class
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
.final class
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.final class
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.final class
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.final class
AReadOnlyJavaBeanLongProperty
provides an adapter between a regular read only Java Bean property of typelong
orLong
and a JavaFXReadOnlyLongProperty
.final class
AReadOnlyJavaBeanObjectProperty
provides an adapter between a regular read only Java Bean property ofT
and a JavaFXReadOnlyObjectProperty
.final class
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of Observable in javafx.beans.value
Modifier and TypeInterfaceDescriptioninterface
An observable boolean value.interface
An observable double value.interface
An observable float value.interface
An observable integer value.interface
An observable reference to anObservableList
.interface
An observable long value.interface
ObservableMapValue<K,
V> An observable reference to anObservableMap
.interface
A common interface of all sub-interfaces ofObservableValue
that wrap a number.interface
An observable typedObject
value.interface
An observable reference to anObservableSet
.interface
An observable String value.interface
AnObservableValue
is an entity that wraps a value and allows to observe the value for changes.interface
A writable reference to anObservableList
.interface
WritableMapValue<K,
V> A writable reference to anObservableMap
.interface
A writable reference to anObservableSet
.Modifier and TypeClassDescriptionclass
A convenience class for creating implementations ofObservableValue
. -
Uses of Observable in javafx.collections
Modifier and TypeInterfaceDescriptioninterface
ObservableArray<T extends ObservableArray<T>>
ObservableArray
is an array that allows listeners to track changes when they occur.interface
ObservableFloatArray
is afloat[]
array that allows listeners to track changes when they occur.interface
ObservableIntegerArray
is anint[]
array that allows listeners to track changes when they occur.interface
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
A set that allows observers to track changes when they occur.Modifier and TypeClassDescriptionclass
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
Abstract class that serves as a base class forObservableList
implementations. -
Uses of Observable in javafx.collections.transformation
Modifier and TypeClassDescriptionfinal class
FilteredList<E>
Wraps an ObservableList and filters its content using the provided Predicate.final 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
Modifier and TypeClassDescriptionclass
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleObjectProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsLongPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of Observable in javafx.scene.control
Modifier and TypeInterfaceDescriptionprotected static interface
Interface representing a text input's content.Modifier and TypeMethodDescriptionprotected final Consumer
<Observable> SkinBase.unregisterInvalidationListeners
(Observable observable) Unregisters all operations that have been registered usingSkinBase.registerInvalidationListener(Observable, Consumer)
for the givenobservable
.Modifier and TypeMethodDescriptionprotected final void
SkinBase.registerInvalidationListener
(Observable observable, Consumer<Observable> operation) Registers an operation to perform when the givenobservable
sends an invalidation event.protected final Consumer
<Observable> SkinBase.unregisterInvalidationListeners
(Observable observable) Unregisters all operations that have been registered usingSkinBase.registerInvalidationListener(Observable, Consumer)
for the givenobservable
.Modifier and TypeMethodDescriptionprotected final void
SkinBase.registerInvalidationListener
(Observable observable, Consumer<Observable> operation) Registers an operation to perform when the givenobservable
sends an invalidation event. -
Uses of Observable in javafx.scene.shape
Modifier and TypeInterfaceDescriptioninterface
ObservableFaceArray
is anint[]
array that allows listeners to track changes when they occur.