Uses of Interface
javafx.beans.Observable
Package
Description
-
Uses of Observable in com.sun.javafx.binding
Modifier and TypeClassDescriptionfinal class
A simple IntegerExpression that represents a single constant value.class
class
-
Uses of Observable in com.sun.javafx.collections
Modifier and TypeClassDescriptionclass
class
A List wrapper class that implements observability.class
ObservableMapWrapper<K,
V> A Map wrapper class that implements observability.final class
class
A Set wrapper class that implements observability.class
class
-
Uses of Observable in dev.webfx.kit.util.properties.conversion
-
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
ANumberExpression
is aObservableNumberValue
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
ABooleanExpression
is aObservableBooleanValue
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
ADoubleExpression
is aObservableDoubleValue
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
class
AListExpression
is aObservableListValue
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
class
AObjectExpression
is aObservableObjectValue
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
AStringExpression
is aObservableStringValue
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
IntegerBinding.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
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
.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
IntegerBinding.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
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 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 aObservableList
.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
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
Super class for all readonly properties wrapping aboolean
.class
Base class for all readonly properties wrapping aboolean
.class
Super class for all readonly properties wrapping adouble
.class
Super class for all readonly properties wrapping anint
.class
Base class for all readonly properties wrapping anint
.class
Super class for all readonly properties wrapping anObservableList
.class
Superclass for all readonly properties wrapping along
.class
Super class 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
Super class for all readonly properties wrapping anString
.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 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
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.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.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 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
.Modifier and TypeClassDescriptionclass
A convenience class for creating implementations ofObservableValue
. -
Uses of Observable in javafx.collections
Modifier and TypeInterfaceDescriptioninterface
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
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 it's content using the provided Predicate.final class
SortedList<E>
Wraps an ObservableList and sorts it's content.class
TransformationList<E,
F> A base class for all lists that wraps other lists in a way that changes the list's elements, order, size or generally it's structure. -
Uses of Observable in javafx.css
Modifier and TypeClassDescriptionclass
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.