Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.beans.binding |
Characteristics of Bindings
|
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
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
|
Modifier and Type | Class and Description |
---|---|
class |
SetBinding<E>
Base class that provides most of the functionality needed to implement a
Binding of an ObservableSet . |
class |
SetExpression<E>
A
SetExpression is a
ObservableSetValue plus additional convenience
methods to generate bindings in a fluent style. |
Modifier and Type | Field and Description |
---|---|
private static ObservableSet |
SetExpression.EMPTY_SET |
private ObservableSet<E> |
SetBinding.value |
Modifier and Type | Method and Description |
---|---|
protected abstract ObservableSet<E> |
SetBinding.computeValue()
Calculates the current value of this binding.
|
ObservableSet<E> |
SetBinding.get()
Returns the result of
SetBinding.computeValue() . |
ObservableSet<E> |
SetExpression.getValue() |
Modifier and Type | Method and Description |
---|---|
static <E> void |
Bindings.bindContent(java.util.Set<E> set1,
ObservableSet<? extends E> set2)
Generates a content binding between an
ObservableSet and a Set . |
static <E> void |
Bindings.bindContentBidirectional(ObservableSet<E> set1,
ObservableSet<E> set2)
Generates a bidirectional binding (or "bind with inverse") between two
instances of
ObservableSet . |
static <E> void |
Bindings.bindContentBidirectional(ObservableSet<E> set1,
ObservableSet<E> set2)
Generates a bidirectional binding (or "bind with inverse") between two
instances of
ObservableSet . |
static <E> BooleanBinding |
Bindings.isEmpty(ObservableSet<E> op)
|
BooleanBinding |
SetExpression.isEqualTo(ObservableSet<?> other)
Creates a new
BooleanBinding that holds true if this set is equal to
another ObservableSet . |
BooleanBinding |
SetExpression.isNotEqualTo(ObservableSet<?> other)
Creates a new
BooleanBinding that holds true if this set is not equal to
another ObservableSet . |
static <E> IntegerBinding |
Bindings.size(ObservableSet<E> op)
Creates a new
IntegerBinding that contains the size
of an ObservableSet . |
Modifier and Type | Method and Description |
---|---|
void |
SetBinding.addListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
SetBinding.removeListener(ChangeListener<? super ObservableSet<E>> listener) |
Modifier and Type | Class and Description |
---|---|
class |
ReadOnlySetProperty<E>
Super class for all readonly properties wrapping an
ObservableSet . |
class |
ReadOnlySetPropertyBase<E>
Base class for all readonly properties wrapping an
ObservableSet . |
class |
ReadOnlySetWrapper<E>
This class provides a convenient class to define read-only properties.
|
class |
SetProperty<E>
This class provides a full implementation of a
Property wrapping a
ObservableSet . |
class |
SetPropertyBase<E>
The class
SetPropertyBase is the base class for a property
wrapping an ObservableSet . |
class |
SimpleSetProperty<E>
This class provides a full implementation of a
Property wrapping an
ObservableSet . |
Modifier and Type | Field and Description |
---|---|
private ObservableSet<E> |
SetPropertyBase.value |
Modifier and Type | Field and Description |
---|---|
private ObservableValue<? extends ObservableSet<E>> |
SetPropertyBase.observable |
Modifier and Type | Method and Description |
---|---|
ObservableSet<E> |
SetPropertyBase.get() |
ObservableSet<E> |
ReadOnlySetWrapper.ReadOnlyPropertyImpl.get() |
Modifier and Type | Method and Description |
---|---|
void |
ReadOnlySetProperty.bindContent(ObservableSet<E> set)
Creates a content binding between the
ObservableSet , that is
wrapped in this ReadOnlySetProperty , and another ObservableSet . |
void |
ReadOnlySetProperty.bindContentBidirectional(ObservableSet<E> set)
Creates a bidirectional content binding of the
ObservableSet , that is
wrapped in this ReadOnlySetProperty , and another ObservableSet . |
private void |
SetPropertyBase.markInvalid(ObservableSet<E> oldValue) |
void |
SetPropertyBase.set(ObservableSet<E> v) |
void |
SetProperty.setValue(ObservableSet<E> v)
Set the wrapped value.
|
Modifier and Type | Method and Description |
---|---|
void |
SetPropertyBase.addListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
ReadOnlySetWrapper.addListener(ChangeListener<? super ObservableSet<E>> listener)
Adds a
ChangeListener which will be notified whenever the value
of the ObservableValue changes. |
void |
ReadOnlySetWrapper.ReadOnlyPropertyImpl.addListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
ReadOnlySetPropertyBase.addListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
SetPropertyBase.bind(ObservableValue<? extends ObservableSet<E>> observable) |
void |
SetProperty.bindBidirectional(Property<ObservableSet<E>> other)
Create a bidirectional binding between this
Property and another
one. |
void |
SetPropertyBase.removeListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
ReadOnlySetWrapper.removeListener(ChangeListener<? super ObservableSet<E>> listener)
Removes the given listener from the list of listeners, that are notified
whenever the value of the
ObservableValue changes. |
void |
ReadOnlySetWrapper.ReadOnlyPropertyImpl.removeListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
ReadOnlySetPropertyBase.removeListener(ChangeListener<? super ObservableSet<E>> listener) |
void |
SetProperty.unbindBidirectional(Property<ObservableSet<E>> other)
Remove a bidirectional binding between this
Property and another
one. |
Constructor and Description |
---|
ReadOnlySetWrapper(java.lang.Object bean,
java.lang.String name,
ObservableSet<E> initialValue)
The constructor of
ReadOnlySetWrapper |
ReadOnlySetWrapper(ObservableSet<E> initialValue)
The constructor of
ReadOnlySetWrapper |
SetPropertyBase(ObservableSet<E> initialValue)
The constructor of the
SetPropertyBase . |
SimpleSetProperty(java.lang.Object bean,
java.lang.String name,
ObservableSet<E> initialValue)
The constructor of
SimpleSetProperty |
SimpleSetProperty(ObservableSet<E> initialValue)
The constructor of
SimpleSetProperty |
Modifier and Type | Interface and Description |
---|---|
interface |
ObservableSetValue<E>
An observable reference to an
ObservableSet . |
interface |
WritableSetValue<E>
A writable reference to an
ObservableSet . |
Modifier and Type | Field and Description |
---|---|
private ObservableSet<E> |
SetChangeListener.Change.set |
Modifier and Type | Method and Description |
---|---|
ObservableSet<E> |
SetChangeListener.Change.getSet()
An observable set that is associated with the change.
|
static <E> ObservableSet<E> |
FXCollections.observableSet(E... elements)
Constructs an ObservableSet that contains all the specified elements.
|
static <E> ObservableSet<E> |
FXCollections.observableSet(java.util.Set<E> set)
Constructs an ObservableSet that is backed by the specified set.
|
Constructor and Description |
---|
SetChangeListener.Change(ObservableSet<E> set)
Constructs a change associated with a set.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to