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.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.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.layout |
Provides classes to support user interface layout.
|
Modifier and Type | Class and Description |
---|---|
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 |
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 |
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 | Field and Description |
---|---|
private ObservableObjectValue<T> |
When.ObjectCondition.falseResult |
private ObservableObjectValue<T> |
When.ObjectCondition.trueResult |
private ObservableObjectValue<T> |
When.ObjectConditionBuilder.trueResult |
Modifier and Type | Method and Description |
---|---|
static BooleanBinding |
Bindings.equal(java.lang.Object op1,
ObservableObjectValue<?> op2)
Creates a new
BooleanBinding that holds true
if the value of an ObservableObjectValue is
equal to a constant value. |
static BooleanBinding |
Bindings.equal(ObservableObjectValue<?> op1,
java.lang.Object op2)
Creates a new
BooleanBinding that holds true
if the value of an ObservableObjectValue is
equal to a constant value. |
static BooleanBinding |
Bindings.equal(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableObjectValue are equal. |
static BooleanBinding |
Bindings.equal(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableObjectValue are equal. |
private static BooleanBinding |
Bindings.equal(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.equal(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2,
Observable... dependencies) |
BooleanBinding |
ObjectExpression.isEqualTo(ObservableObjectValue<?> other)
Creates a new
BooleanExpression that holds true if this and
another ObservableObjectValue are equal. |
BooleanBinding |
ObjectExpression.isNotEqualTo(ObservableObjectValue<?> other)
Creates a new
BooleanExpression that holds true if this and
another ObservableObjectValue are not equal. |
static BooleanBinding |
Bindings.isNotNull(ObservableObjectValue<?> op)
|
static BooleanBinding |
Bindings.isNull(ObservableObjectValue<?> op)
|
static BooleanBinding |
Bindings.notEqual(java.lang.Object op1,
ObservableObjectValue<?> op2)
Creates a new
BooleanBinding that holds true
if the value of an ObservableObjectValue is
not equal to a constant value. |
static BooleanBinding |
Bindings.notEqual(ObservableObjectValue<?> op1,
java.lang.Object op2)
Creates a new
BooleanBinding that holds true
if the value of an ObservableObjectValue is
not equal to a constant value. |
static BooleanBinding |
Bindings.notEqual(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableObjectValue are not equal. |
static BooleanBinding |
Bindings.notEqual(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2)
Creates a new
BooleanBinding that holds true
if the values of two instances of
ObservableObjectValue are not equal. |
private static BooleanBinding |
Bindings.notEqual(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2,
Observable... dependencies) |
private static BooleanBinding |
Bindings.notEqual(ObservableObjectValue<?> op1,
ObservableObjectValue<?> op2,
Observable... dependencies) |
static <T> ObjectExpression<T> |
ObjectExpression.objectExpression(ObservableObjectValue<T> value)
Returns an
ObjectExpression that wraps an
ObservableObjectValue . |
ObjectBinding<T> |
When.ObjectConditionBuilder.otherwise(ObservableObjectValue<T> otherwiseValue)
Defines the
ObservableObjectValue which
value is returned by the ternary expression if the condition is
false . |
<T> When.ObjectConditionBuilder<T> |
When.then(ObservableObjectValue<T> thenValue)
Defines the
ObservableObjectValue which value
is returned by the ternary expression if the condition is true . |
Constructor and Description |
---|
When.ObjectCondition(ObservableObjectValue<T> then,
ObservableObjectValue<T> otherwise) |
When.ObjectCondition(ObservableObjectValue<T> then,
ObservableObjectValue<T> otherwise) |
When.ObjectCondition(ObservableObjectValue<T> then,
T otherwise) |
When.ObjectCondition(T then,
ObservableObjectValue<T> otherwise) |
When.ObjectConditionBuilder(ObservableObjectValue<T> thenValue) |
Modifier and Type | Class and Description |
---|---|
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 |
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 |
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 |
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 |
SimpleListProperty<E>
This class provides a full implementation of a
Property wrapping an
ObservableList . |
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 | Class and Description |
---|---|
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 |
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 |
ObservableListValue<E>
An observable reference to an
ObservableList . |
interface |
ObservableMapValue<K,V>
An observable reference to an
ObservableMap . |
interface |
ObservableSetValue<E>
An observable reference to an
ObservableSet . |
interface |
ObservableStringValue
An observable String value.
|
Modifier and Type | Interface and Description |
---|---|
protected static interface |
TextInputControl.Content
Interface representing a text input's content.
|
Modifier and Type | Method and Description |
---|---|
ObservableObjectValue<Insets> |
Region.insets()
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to