Uses of Interface
javafx.collections.ObservableSet
Package
Description
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.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 API for making properties styleable via CSS and for supporting
pseudo-class state.
Provides the public classes for the JavaFX Printing API.
Provides the core set of base
classes for the JavaFX Scene Graph API.
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.
-
Uses of ObservableSet in javafx.beans.binding
Modifier and TypeClassDescriptionclass
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.Modifier and TypeClassDescriptionclass
SetBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableSet
.Modifier and TypeMethodDescriptionprotected abstract ObservableSet
<E> SetBinding.computeValue()
Calculates the current value of this binding.final ObservableSet
<E> SetBinding.get()
Returns the result ofSetBinding.computeValue()
.SetExpression.getValue()
Modifier and TypeMethodDescriptionstatic <E> void
Bindings.bindContent
(Set<E> set1, ObservableSet<? extends E> set2) Generates a content binding between anObservableSet
and aSet
.static <E> void
Bindings.bindContentBidirectional
(ObservableSet<E> set1, ObservableSet<E> set2) Generates a bidirectional binding (or "bind with inverse") between two instances ofObservableSet
.static <E> BooleanBinding
Bindings.isEmpty
(ObservableSet<E> op) SetExpression.isEqualTo
(ObservableSet<?> other) static <E> BooleanBinding
Bindings.isNotEmpty
(ObservableSet<E> op) SetExpression.isNotEqualTo
(ObservableSet<?> other) static <E> IntegerBinding
Bindings.size
(ObservableSet<E> op) Creates a newIntegerBinding
that contains the size of anObservableSet
.Modifier and TypeMethodDescriptionvoid
SetBinding.addListener
(ChangeListener<? super ObservableSet<E>> listener) void
SetBinding.removeListener
(ChangeListener<? super ObservableSet<E>> listener) -
Uses of ObservableSet in javafx.beans.property
Modifier and TypeClassDescriptionclass
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
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 anObservableSet
.Modifier and TypeClassDescriptionclass
Superclass for all readonly properties wrapping anObservableSet
.class
SetProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.Modifier and TypeMethodDescriptionvoid
ReadOnlySetProperty.bindContent
(ObservableSet<E> set) Creates a content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.void
ReadOnlySetProperty.bindContentBidirectional
(ObservableSet<E> set) Creates a bidirectional content binding of theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.void
SetPropertyBase.set
(ObservableSet<E> newValue) void
SetProperty.setValue
(ObservableSet<E> v) Set the wrapped value.Modifier and TypeMethodDescriptionvoid
ReadOnlySetPropertyBase.addListener
(ChangeListener<? super ObservableSet<E>> listener) void
SetPropertyBase.addListener
(ChangeListener<? super ObservableSet<E>> listener) void
SetPropertyBase.bind
(ObservableValue<? extends ObservableSet<E>> newObservable) void
SetProperty.bindBidirectional
(Property<ObservableSet<E>> other) Create a bidirectional binding between thisProperty
and another one.void
ReadOnlySetPropertyBase.removeListener
(ChangeListener<? super ObservableSet<E>> listener) void
SetPropertyBase.removeListener
(ChangeListener<? super ObservableSet<E>> listener) void
SetProperty.unbindBidirectional
(Property<ObservableSet<E>> other) Removes a bidirectional binding between thisProperty
and another one.ModifierConstructorDescriptionReadOnlySetWrapper
(Object bean, String name, ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapper
ReadOnlySetWrapper
(ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapper
SetPropertyBase
(ObservableSet<E> initialValue) The constructor of theSetPropertyBase
.SimpleSetProperty
(Object bean, String name, ObservableSet<E> initialValue) The constructor ofSimpleSetProperty
SimpleSetProperty
(ObservableSet<E> initialValue) The constructor ofSimpleSetProperty
-
Uses of ObservableSet in javafx.beans.value
Modifier and TypeInterfaceDescriptioninterface
An observable reference to anObservableSet
.interface
A writable reference to anObservableSet
.Modifier and TypeInterfaceDescriptioninterface
An observable reference to anObservableSet
.interface
A writable reference to anObservableSet
. -
Uses of ObservableSet in javafx.collections
Modifier and TypeMethodDescriptionstatic <E> ObservableSet
<E> FXCollections.checkedObservableSet
(ObservableSet<E> set, Class<E> type) Creates and returns a typesafe wrapper on top of provided observable set.static <E> ObservableSet
<E> FXCollections.emptyObservableSet()
Creates an empty unmodifiable observable set.SetChangeListener.Change.getSet()
An observable set that is associated with the change.static <E> ObservableSet
<E> FXCollections.observableSet
(E... elements) Constructs an ObservableSet backed by a HashSet that contains all the specified elements.static <E> ObservableSet
<E> FXCollections.observableSet
(Set<E> set) Constructs an ObservableSet that is backed by the specified set.static <E> ObservableSet
<E> FXCollections.synchronizedObservableSet
(ObservableSet<E> set) Creates and returns a synchronized wrapper on top of provided observable set.static <E> ObservableSet
<E> FXCollections.unmodifiableObservableSet
(ObservableSet<E> set) Creates and returns unmodifiable wrapper on top of provided observable set.Modifier and TypeMethodDescriptionstatic <E> ObservableSet
<E> FXCollections.checkedObservableSet
(ObservableSet<E> set, Class<E> type) Creates and returns a typesafe wrapper on top of provided observable set.static <E> ObservableSet
<E> FXCollections.synchronizedObservableSet
(ObservableSet<E> set) Creates and returns a synchronized wrapper on top of provided observable set.static <E> ObservableSet
<E> FXCollections.unmodifiableObservableSet
(ObservableSet<E> set) Creates and returns unmodifiable wrapper on top of provided observable set.ModifierConstructorDescriptionChange
(ObservableSet<E> set) Constructs a change associated with a set. -
Uses of ObservableSet in javafx.css
Modifier and TypeMethodDescriptionStyleable.getPseudoClassStates()
Return the pseudo-class state of this Styleable. -
Uses of ObservableSet in javafx.print
Modifier and TypeMethodDescriptionstatic ObservableSet
<Printer> Printer.getAllPrinters()
Retrieve the installed printers. -
Uses of ObservableSet in javafx.scene
-
Uses of ObservableSet in javafx.scene.control
Modifier and TypeMethodDescriptionfinal ObservableSet
<PseudoClass> MenuItem.getPseudoClassStates()
Return the pseudo-class state of this Styleable.final ObservableSet
<PseudoClass> PopupControl.getPseudoClassStates()
Return the pseudo-class state of this Styleable.final ObservableSet
<PseudoClass> Tab.getPseudoClassStates()
Return the pseudo-class state of this Styleable.final ObservableSet
<PseudoClass> TableColumnBase.getPseudoClassStates()
Return the pseudo-class state of this Styleable.