Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.beans |
The package
javafx.beans contains the interfaces that
define the most generic form of observability. |
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.property.adapter | |
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.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
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.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
javafx.scene.media |
Provides the set of classes for integrating audio and video into Java FX
Applications.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Method and Description |
---|---|
void |
WeakInvalidationListener.invalidated(Observable observable)
This method needs to be provided by an implementation of
InvalidationListener . |
void |
InvalidationListener.invalidated(Observable observable)
This method needs to be provided by an implementation of
InvalidationListener . |
Modifier and Type | Interface and Description |
---|---|
interface |
Binding<T>
A
Binding 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
A
NumberExpression is a
ObservableNumberValue plus additional convenience
methods to generate bindings in a fluent style. |
Modifier and Type | Class and Description |
---|---|
class |
BooleanBinding
Base class that provides most of the functionality needed to implement a
Binding of a boolean value. |
class |
BooleanExpression
A
BooleanExpression is a
ObservableBooleanValue plus additional convenience
methods to generate bindings in a fluent style. |
class |
DoubleBinding
Base class that provides most of the functionality needed to implement a
Binding of a double value. |
class |
DoubleExpression
A
DoubleExpression is a
ObservableDoubleValue plus additional convenience
methods to generate bindings in a fluent style. |
class |
FloatBinding
Base class that provides most of the functionality needed to implement a
Binding of a float value. |
class |
FloatExpression
A
FloatExpression is a
ObservableFloatValue plus additional convenience
methods to generate bindings in a fluent style. |
class |
IntegerBinding
Base class that provides most of the functionality needed to implement a
Binding of an int value. |
class |
IntegerExpression
A
IntegerExpression is a
ObservableIntegerValue 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 a
Binding of an ObservableList . |
class |
ListExpression<E>
A
ListExpression is a
ObservableListValue plus additional convenience
methods to generate bindings in a fluent style. |
class |
LongBinding
Base class that provides most of the functionality needed to implement a
Binding of a long value. |
class |
LongExpression
A
LongExpression is a ObservableLongValue
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 a
Binding of an ObservableMap . |
class |
MapExpression<K,V>
A
MapExpression is a
ObservableMapValue plus additional convenience
methods to generate bindings in a fluent style. |
class |
NumberExpressionBase |
class |
ObjectBinding<T>
Base class that provides most of the functionality needed to implement a
Binding of an Object . |
class |
ObjectExpression<T>
A
ObjectExpression is a
ObservableObjectValue 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 a
Binding of an ObservableSet . |
class |
SetExpression<E>
A
SetExpression is a
ObservableSetValue plus additional convenience
methods to generate bindings in a fluent style. |
class |
StringBinding
Base class that provides most of the functionality needed to implement a
Binding of a String . |
class |
StringExpression
A
StringExpression is a
ObservableStringValue plus additional convenience
methods to generate bindings in a fluent style. |
Modifier and Type | Method and Description |
---|---|
private static NumberBinding |
Bindings.add(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
protected void |
StringBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
SetBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
ObjectBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
MapBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
LongBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
ListBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
IntegerBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
FloatBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
DoubleBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
protected void |
BooleanBinding.bind(Observable... dependencies)
Start observing the dependencies for changes.
|
static BooleanBinding |
Bindings.createBooleanBinding(java.util.concurrent.Callable<java.lang.Boolean> func,
Observable... dependencies)
Helper function to create a custom
BooleanBinding . |
static DoubleBinding |
Bindings.createDoubleBinding(java.util.concurrent.Callable<java.lang.Double> func,
Observable... dependencies)
Helper function to create a custom
DoubleBinding . |
static FloatBinding |
Bindings.createFloatBinding(java.util.concurrent.Callable<java.lang.Float> func,
Observable... dependencies)
Helper function to create a custom
FloatBinding . |
static IntegerBinding |
Bindings.createIntegerBinding(java.util.concurrent.Callable<java.lang.Integer> func,
Observable... dependencies)
Helper function to create a custom
IntegerBinding . |
static LongBinding |
Bindings.createLongBinding(java.util.concurrent.Callable<java.lang.Long> func,
Observable... dependencies)
Helper function to create a custom
LongBinding . |
static <T> ObjectBinding<T> |
Bindings.createObjectBinding(java.util.concurrent.Callable<T> func,
Observable... dependencies)
Helper function to create a custom
ObjectBinding . |
static StringBinding |
Bindings.createStringBinding(java.util.concurrent.Callable<java.lang.String> func,
Observable... dependencies)
Helper function to create a custom
StringBinding . |
private static NumberBinding |
Bindings.divide(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.equal(ObservableNumberValue op1,
ObservableNumberValue op2,
double epsilon,
Observable... dependencies) |
private static BooleanBinding |
Bindings.equal(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.equal(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.equalIgnoreCase(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.greaterThan(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.greaterThan(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.greaterThanOrEqual(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.greaterThanOrEqual(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
void |
When.WhenListener.invalidated(Observable observable) |
void |
Bindings.ShortCircuitAndInvalidator.invalidated(Observable observable) |
void |
Bindings.ShortCircuitOrInvalidator.invalidated(Observable observable) |
private static BooleanBinding |
Bindings.lessThan(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.lessThan(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.lessThanOrEqual(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.lessThanOrEqual(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static NumberBinding |
Bindings.max(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static NumberBinding |
Bindings.min(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static NumberBinding |
Bindings.multiply(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.notEqual(ObservableNumberValue op1,
ObservableNumberValue op2,
double epsilon,
Observable... dependencies) |
private static BooleanBinding |
Bindings.notEqual(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.notEqual(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.notEqualIgnoreCase(ObservableStringValue op1,
ObservableStringValue op2,
Observable... dependencies) |
private static NumberBinding |
Bindings.subtract(ObservableNumberValue op1,
ObservableNumberValue op2,
Observable... dependencies) |
protected void |
StringBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
SetBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
ObjectBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
MapBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
LongBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
ListBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
IntegerBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
FloatBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
DoubleBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
protected void |
BooleanBinding.unbind(Observable... dependencies)
Stop observing the dependencies for changes.
|
Modifier and Type | Interface and 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.
|
Modifier and Type | Class and Description |
---|---|
class |
BooleanProperty
This class provides a full implementation of a
Property wrapping a
boolean value. |
class |
BooleanPropertyBase
The class
BooleanPropertyBase is the base class for a property
wrapping a boolean value. |
class |
DoubleProperty
This class defines a
Property wrapping a double value. |
class |
DoublePropertyBase
The class
DoublePropertyBase is the base class for a property
wrapping a double value. |
class |
FloatProperty
This class defines a
Property wrapping a float value. |
class |
FloatPropertyBase
The class
FloatPropertyBase is the base class for a property wrapping
a float value. |
class |
IntegerProperty
This class defines a
Property wrapping an int value. |
class |
IntegerPropertyBase
The class
IntegerPropertyBase is the base class for a property
wrapping a int value. |
class |
ListProperty<E>
This class provides a full implementation of a
Property wrapping a
ObservableList . |
class |
ListPropertyBase<E>
The class
ListPropertyBase is the base class for a property
wrapping an ObservableList . |
class |
LongProperty
This class defines a
Property wrapping a long value. |
class |
LongPropertyBase
The class
LongPropertyBase is the base class for a property wrapping
a long value. |
class |
MapProperty<K,V>
This class provides a full implementation of a
Property wrapping a
ObservableMap . |
class |
MapPropertyBase<K,V>
The class
MapPropertyBase is the base class for a property
wrapping an ObservableMap . |
class |
ObjectProperty<T>
This class provides a full implementation of a
Property wrapping an
arbitrary Object . |
class |
ObjectPropertyBase<T>
The class
ObjectPropertyBase is the base class for a property
wrapping an arbitrary Object . |
class |
ReadOnlyBooleanProperty
Super class for all readonly properties wrapping a
boolean . |
class |
ReadOnlyBooleanPropertyBase
Base class for all readonly properties wrapping a
boolean . |
class |
ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyDoubleProperty
Super class for all readonly properties wrapping a
double . |
class |
ReadOnlyDoublePropertyBase
Base class for all readonly properties wrapping a
double . |
class |
ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyFloatProperty
Super class for all readonly properties wrapping a
float . |
class |
ReadOnlyFloatPropertyBase
Base class for all readonly properties wrapping a
float . |
class |
ReadOnlyFloatWrapper
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyIntegerProperty
Super class for all readonly properties wrapping an
int . |
class |
ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping an
int . |
class |
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyListProperty<E>
Super class for all readonly properties wrapping an
ObservableList . |
class |
ReadOnlyListPropertyBase<E>
Base class for all readonly properties wrapping a
ObservableList . |
class |
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyLongProperty
Super class for all readonly properties wrapping a
long . |
class |
ReadOnlyLongPropertyBase
Base class for all readonly properties wrapping a
long . |
class |
ReadOnlyLongWrapper
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyMapProperty<K,V>
Super class for all readonly properties wrapping an
ObservableMap . |
class |
ReadOnlyMapPropertyBase<K,V>
Base class for all readonly properties wrapping an
ObservableMap . |
class |
ReadOnlyMapWrapper<K,V>
This class provides a convenient class to define read-only properties.
|
class |
ReadOnlyObjectProperty<T>
Super class for all readonly properties wrapping an arbitrary
Object . |
class |
ReadOnlyObjectPropertyBase<T>
Base class for all readonly properties wrapping an arbitrary
Object . |
class |
ReadOnlyObjectWrapper<T>
This class provides a convenient class to define read-only properties.
|
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 |
ReadOnlyStringProperty
Super class for all readonly properties wrapping an
String . |
class |
ReadOnlyStringPropertyBase
Base class for all readonly properties wrapping a
String . |
class |
ReadOnlyStringWrapper
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 |
SimpleBooleanProperty
This class provides a full implementation of a
Property wrapping a
boolean value. |
class |
SimpleDoubleProperty
This class provides a full implementation of a
Property wrapping a
double value. |
class |
SimpleFloatProperty
This class provides a full implementation of a
Property wrapping a
float value. |
class |
SimpleIntegerProperty
This class provides a full implementation of a
Property wrapping a
int value. |
class |
SimpleListProperty<E>
This class provides a full implementation of a
Property wrapping an
ObservableList . |
class |
SimpleLongProperty
This class provides a full implementation of a
Property wrapping a
long value. |
class |
SimpleMapProperty<K,V>
This class provides a full implementation of a
Property wrapping an
ObservableMap . |
class |
SimpleObjectProperty<T>
This class provides a full implementation of a
Property wrapping an
arbitrary Object . |
class |
SimpleSetProperty<E>
This class provides a full implementation of a
Property wrapping an
ObservableSet . |
class |
SimpleStringProperty
This class provides a full implementation of a
Property wrapping a
String value. |
class |
StringProperty
This class provides a full implementation of a
Property wrapping a
String value. |
class |
StringPropertyBase
The class
StringPropertyBase is the base class for a property
wrapping a String value. |
Modifier and Type | Method and Description |
---|---|
void |
StringPropertyBase.Listener.invalidated(Observable valueModel) |
void |
SetPropertyBase.Listener.invalidated(Observable valueModel) |
void |
ObjectPropertyBase.Listener.invalidated(Observable valueModel) |
void |
MapPropertyBase.Listener.invalidated(Observable valueModel) |
void |
LongPropertyBase.Listener.invalidated(Observable valueModel) |
void |
ListPropertyBase.Listener.invalidated(Observable valueModel) |
void |
IntegerPropertyBase.Listener.invalidated(Observable valueModel) |
void |
FloatPropertyBase.Listener.invalidated(Observable valueModel) |
void |
DoublePropertyBase.Listener.invalidated(Observable valueModel) |
void |
BooleanPropertyBase.Listener.invalidated(Observable valueModel) |
Modifier and Type | Interface and Description |
---|---|
interface |
JavaBeanProperty<T>
JavaBeanProperty%lt;T%gt; is the super interface of all adapters between
writable Java Bean properties and JavaFX properties. |
interface |
ReadOnlyJavaBeanProperty<T>
JavaBeanProperty%lt;T%gt; is the super interface of all adapters between
readonly Java Bean properties and JavaFX properties. |
Modifier and Type | Class and Description |
---|---|
class |
JavaBeanBooleanProperty
A
JavaBeanBooleanProperty provides an adapter between a regular
Java Bean property of type boolean or Boolean and a JavaFX
BooleanProperty . |
class |
JavaBeanDoubleProperty
A
JavaBeanDoubleProperty provides an adapter between a regular
Java Bean property of type double or Double and a JavaFX
DoubleProperty . |
class |
JavaBeanFloatProperty
A
JavaBeanFloatProperty provides an adapter between a regular
Java Bean property of type float or Float and a JavaFX
FloatProperty . |
class |
JavaBeanIntegerProperty
A
JavaBeanIntegerProperty provides an adapter between a regular
Java Bean property of type int or Integer and a JavaFX
IntegerProperty . |
class |
JavaBeanLongProperty
A
JavaBeanLongProperty provides an adapter between a regular
Java Bean property of type long or Long and a JavaFX
LongProperty . |
class |
JavaBeanObjectProperty<T>
A
JavaBeanObjectProperty provides an adapter between a regular
Java Bean property of type T and a JavaFX
ObjectProperty<T> . |
class |
JavaBeanStringProperty
A
JavaBeanStringProperty provides an adapter between a regular
Java Bean property of type String and a JavaFX
StringProperty . |
class |
ReadOnlyJavaBeanBooleanProperty
A
ReadOnlyJavaBeanBooleanProperty provides an adapter between a regular
read only Java Bean property of type boolean or Boolean and a JavaFX
ReadOnlyBooleanProperty . |
class |
ReadOnlyJavaBeanDoubleProperty
A
ReadOnlyJavaBeanDoubleProperty provides an adapter between a regular
read only Java Bean property of type double or Double and a JavaFX
ReadOnlyDoubleProperty . |
class |
ReadOnlyJavaBeanFloatProperty
A
ReadOnlyJavaBeanFloatProperty provides an adapter between a regular
read only Java Bean property of type float or Float and a JavaFX
ReadOnlyFloatProperty . |
class |
ReadOnlyJavaBeanIntegerProperty
A
ReadOnlyJavaBeanIntegerProperty provides an adapter between a regular
read only Java Bean property of type int or Integer and a JavaFX
ReadOnlyIntegerProperty . |
class |
ReadOnlyJavaBeanLongProperty
A
ReadOnlyJavaBeanLongProperty provides an adapter between a regular
read only Java Bean property of type long or Long and a JavaFX
ReadOnlyLongProperty . |
class |
ReadOnlyJavaBeanObjectProperty<T>
A
ReadOnlyJavaBeanObjectProperty provides an adapter between a regular
read only Java Bean property of T and a JavaFX
ReadOnlyObjectProperty . |
class |
ReadOnlyJavaBeanStringProperty
A
ReadOnlyJavaBeanStringProperty provides an adapter between a regular
read only Java Bean property of type String and a JavaFX
ReadOnlyStringProperty . |
Modifier and Type | Interface and 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 an
ObservableList . |
interface |
ObservableLongValue
An observable long value.
|
interface |
ObservableMapValue<K,V>
An observable reference to an
ObservableMap . |
interface |
ObservableNumberValue
A common interface of all sub-interfaces of
ObservableValue that wrap
a number. |
interface |
ObservableObjectValue<T>
An observable typed
Object value. |
interface |
ObservableSetValue<E>
An observable reference to an
ObservableSet . |
interface |
ObservableStringValue
An observable String value.
|
interface |
ObservableValue<T>
An
ObservableValue is an entity that wraps a value and allows to
observe the value for changes. |
interface |
WritableListValue<E>
A writable reference to an
ObservableList . |
interface |
WritableMapValue<K,V>
A writable reference to an
ObservableMap . |
interface |
WritableSetValue<E>
A writable reference to an
ObservableSet . |
Modifier and Type | Class and Description |
---|---|
class |
ObservableValueBase<T>
A convenience class for creating implementations of
ObservableValue . |
Modifier and Type | Interface and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
ImageCursor.DelayedInitialization.invalidated(Observable valueModel) |
Modifier and Type | Interface and Description |
---|---|
protected static interface |
TextInputControl.Content
Interface representing a text input's content.
|
Modifier and Type | Method and Description |
---|---|
void |
TextInputControl.TextProperty.Listener.invalidated(Observable valueModel) |
Modifier and Type | Method and Description |
---|---|
void |
Lighting.LightChangeListener.invalidated(Observable valueModel) |
void |
Effect.EffectInputChangeListener.invalidated(Observable valueModel) |
void |
DisplacementMap.MapDataChangeListener.invalidated(Observable valueModel) |
Modifier and Type | Method and Description |
---|---|
void |
MediaView.MediaErrorInvalidationListener.invalidated(Observable value) |
Modifier and Type | Method and Description |
---|---|
void |
PopupWindow.AutofixHandler.invalidated(Observable observable) |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to