Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
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
|
javafx.fxml |
Contains classes for loading an object hierarchy from markup.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.chart |
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
|
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.control.cell |
The
javafx.scene.control.cell package is where all cell-related
classes are located, other than the core classes such as
Cell , IndexedCell ,
ListCell , TreeCell ,
and TableCell . |
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
javafx.scene.layout |
Provides classes to support user interface layout.
|
javafx.scene.media |
Provides the set of classes for integrating audio and video into Java FX
Applications.
|
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<Animation> |
SequentialTransition.children |
private ObservableList<Animation> |
ParallelTransition.children |
private ObservableList<KeyFrame> |
Timeline.keyFrames |
Modifier and Type | Method and Description |
---|---|
ObservableList<Animation> |
SequentialTransition.getChildren()
A list of
Animations that will be
played sequentially. |
ObservableList<Animation> |
ParallelTransition.getChildren()
A list of
Animations that will be
played sequentially. |
ObservableList<KeyFrame> |
Timeline.getKeyFrames()
Returns the
KeyFrames of this Timeline . |
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. |
Modifier and Type | Field and Description |
---|---|
private static ObservableList |
ListExpression.EMPTY_LIST |
private ObservableList<E> |
ListBinding.value |
Modifier and Type | Method and Description |
---|---|
protected abstract ObservableList<E> |
ListBinding.computeValue()
Calculates the current value of this binding.
|
ObservableList<E> |
ListBinding.get()
Returns the result of
ListBinding.computeValue() . |
ObservableList<ObservableValue<?>> |
When.BooleanCondition.getDependencies() |
ObservableList<ObservableValue<?>> |
When.StringCondition.getDependencies() |
ObservableList<ObservableValue<?>> |
When.ObjectCondition.getDependencies() |
ObservableList<?> |
StringBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
SetBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
ObjectBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
MapBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
LongBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
ListBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
IntegerBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
FloatBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
DoubleBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
BooleanBinding.getDependencies()
A default implementation of
getDependencies() that returns an
empty ObservableList . |
ObservableList<?> |
Binding.getDependencies()
Returns the dependencies of a binding in an unmodifiable
ObservableList . |
ObservableList<E> |
ListExpression.getValue() |
Modifier and Type | Method and Description |
---|---|
static <E> void |
Bindings.bindContent(java.util.List<E> list1,
ObservableList<? extends E> list2)
Generates a content binding between an
ObservableList and a List . |
static <E> void |
Bindings.bindContentBidirectional(ObservableList<E> list1,
ObservableList<E> list2)
Generates a bidirectional binding (or "bind with inverse") between two
instances of
ObservableList . |
static <E> void |
Bindings.bindContentBidirectional(ObservableList<E> list1,
ObservableList<E> list2)
Generates a bidirectional binding (or "bind with inverse") between two
instances of
ObservableList . |
static BooleanBinding |
Bindings.booleanValueAt(ObservableList<java.lang.Boolean> op,
int index)
Creates a new
BooleanBinding that contains the element
of an ObservableList at the specified position. |
static BooleanBinding |
Bindings.booleanValueAt(ObservableList<java.lang.Boolean> op,
ObservableIntegerValue index)
Creates a new
BooleanBinding that contains the element
of an ObservableList at the specified position. |
static DoubleBinding |
Bindings.doubleValueAt(ObservableList<? extends java.lang.Number> op,
int index)
Creates a new
DoubleBinding that contains the element
of an ObservableList at the specified position. |
static DoubleBinding |
Bindings.doubleValueAt(ObservableList<? extends java.lang.Number> op,
ObservableIntegerValue index)
Creates a new
DoubleBinding that contains the element
of an ObservableList at the specified position. |
static FloatBinding |
Bindings.floatValueAt(ObservableList<? extends java.lang.Number> op,
int index)
Creates a new
FloatBinding that contains the element
of an ObservableList at the specified position. |
static FloatBinding |
Bindings.floatValueAt(ObservableList<? extends java.lang.Number> op,
ObservableIntegerValue index)
Creates a new
FloatBinding that contains the element
of an ObservableList at the specified position. |
static IntegerBinding |
Bindings.integerValueAt(ObservableList<? extends java.lang.Number> op,
int index)
Creates a new
IntegerBinding that contains the element
of an ObservableList at the specified position. |
static IntegerBinding |
Bindings.integerValueAt(ObservableList<? extends java.lang.Number> op,
ObservableIntegerValue index)
Creates a new
IntegerBinding that contains the element
of an ObservableList at the specified position. |
static <E> BooleanBinding |
Bindings.isEmpty(ObservableList<E> op)
|
BooleanBinding |
ListExpression.isEqualTo(ObservableList<?> other)
Creates a new
BooleanBinding that holds true if this list is equal to
another ObservableList . |
BooleanBinding |
ListExpression.isNotEqualTo(ObservableList<?> other)
Creates a new
BooleanBinding that holds true if this list is not equal to
another ObservableList . |
static LongBinding |
Bindings.longValueAt(ObservableList<? extends java.lang.Number> op,
int index)
Creates a new
LongBinding that contains the element
of an ObservableList at the specified position. |
static LongBinding |
Bindings.longValueAt(ObservableList<? extends java.lang.Number> op,
ObservableIntegerValue index)
Creates a new
LongBinding that contains the element
of an ObservableList at the specified position. |
static <E> IntegerBinding |
Bindings.size(ObservableList<E> op)
Creates a new
IntegerBinding that contains the size
of an ObservableList . |
static StringBinding |
Bindings.stringValueAt(ObservableList<java.lang.String> op,
int index)
Creates a new
StringBinding that contains the element
of an ObservableList at the specified position. |
static StringBinding |
Bindings.stringValueAt(ObservableList<java.lang.String> op,
ObservableIntegerValue index)
Creates a new
StringBinding that contains the element
of an ObservableList at the specified position. |
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
int index)
Creates a new
ObjectBinding that contains the element
of an ObservableList at the specified position. |
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
ObservableIntegerValue index)
Creates a new
ObjectBinding that contains the element
of an ObservableList at the specified position. |
Modifier and Type | Method and Description |
---|---|
void |
ListBinding.addListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ListBinding.removeListener(ChangeListener<? super ObservableList<E>> listener) |
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 |
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 |
SimpleListProperty<E>
This class provides a full implementation of a
Property wrapping an
ObservableList . |
Modifier and Type | Field and Description |
---|---|
private ObservableList<E> |
ListPropertyBase.value |
Modifier and Type | Field and Description |
---|---|
private ObservableValue<? extends ObservableList<E>> |
ListPropertyBase.observable |
Modifier and Type | Method and Description |
---|---|
ObservableList<E> |
ReadOnlyListWrapper.ReadOnlyPropertyImpl.get() |
ObservableList<E> |
ListPropertyBase.get() |
Modifier and Type | Method and Description |
---|---|
void |
ReadOnlyListProperty.bindContent(ObservableList<E> list)
Creates a content binding between the
ObservableList , that is
wrapped in this ReadOnlyListProperty , and another ObservableList . |
void |
ReadOnlyListProperty.bindContentBidirectional(ObservableList<E> list)
Creates a bidirectional content binding of the
ObservableList , that is
wrapped in this ReadOnlyListProperty , and another ObservableList . |
private void |
ListPropertyBase.markInvalid(ObservableList<E> oldValue) |
void |
ListPropertyBase.set(ObservableList<E> v) |
void |
ListProperty.setValue(ObservableList<E> v)
Set the wrapped value.
|
Modifier and Type | Method and Description |
---|---|
void |
ReadOnlyListWrapper.addListener(ChangeListener<? super ObservableList<E>> listener)
Adds a
ChangeListener which will be notified whenever the value
of the ObservableValue changes. |
void |
ReadOnlyListWrapper.ReadOnlyPropertyImpl.addListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ReadOnlyListPropertyBase.addListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ListPropertyBase.addListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ListPropertyBase.bind(ObservableValue<? extends ObservableList<E>> observable) |
void |
ListProperty.bindBidirectional(Property<ObservableList<E>> other)
Create a bidirectional binding between this
Property and another
one. |
void |
ReadOnlyListWrapper.removeListener(ChangeListener<? super ObservableList<E>> listener)
Removes the given listener from the list of listeners, that are notified
whenever the value of the
ObservableValue changes. |
void |
ReadOnlyListWrapper.ReadOnlyPropertyImpl.removeListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ReadOnlyListPropertyBase.removeListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ListPropertyBase.removeListener(ChangeListener<? super ObservableList<E>> listener) |
void |
ListProperty.unbindBidirectional(Property<ObservableList<E>> other)
Remove a bidirectional binding between this
Property and another
one. |
Constructor and Description |
---|
ListPropertyBase(ObservableList<E> initialValue)
The constructor of the
ListPropertyBase . |
ReadOnlyListWrapper(java.lang.Object bean,
java.lang.String name,
ObservableList<E> initialValue)
The constructor of
ReadOnlyListWrapper |
ReadOnlyListWrapper(ObservableList<E> initialValue)
The constructor of
ReadOnlyListWrapper |
SimpleListProperty(java.lang.Object bean,
java.lang.String name,
ObservableList<E> initialValue)
The constructor of
SimpleListProperty |
SimpleListProperty(ObservableList<E> initialValue)
The constructor of
SimpleListProperty |
Modifier and Type | Interface and Description |
---|---|
interface |
ObservableListValue<E>
An observable reference to an
ObservableList . |
interface |
WritableListValue<E>
A writable reference to an
ObservableList . |
Modifier and Type | Field and Description |
---|---|
private ObservableList<T> |
FXCollections.UnmodifiableObservableListImpl.backingList |
private ObservableList<T> |
FXCollections.SynchronizedObservableList.backingList |
private static ObservableList |
FXCollections.EMPTY_OBSERVABLE_LIST |
private ObservableList<E> |
ListChangeListener.Change.list |
(package private) ObservableList<T> |
FXCollections.CheckedObservableList.list |
Modifier and Type | Method and Description |
---|---|
static <E> ObservableList<E> |
FXCollections.checkedObservableList(ObservableList<E> list,
java.lang.Class<E> type)
Creates and returns a typesafe wrapper on top of provided observable list.
|
static <E> ObservableList<E> |
FXCollections.concat(ObservableList<E>... lists)
Concatenates more observable lists into one.
|
static <E> ObservableList<E> |
FXCollections.emptyObservableList()
Creates and empty unmodifiable observable list.
|
ObservableList<E> |
ListChangeListener.Change.getList()
The source list of the change.
|
static <E> ObservableList<E> |
FXCollections.observableArrayList()
Creates a new empty observable list that is backed by an arraylist.
|
static <E> ObservableList<E> |
FXCollections.observableArrayList(Callback<E,Observable[]> extractor)
Creates a new empty observable list backed by an arraylist.
|
static <E> ObservableList<E> |
FXCollections.observableArrayList(java.util.Collection<? extends E> col)
Creates a new observable array list and adds a content of collection
col
to it. |
static <E> ObservableList<E> |
FXCollections.observableArrayList(E... items)
Creates a new observable array list with
items added to it. |
static <E> ObservableList<E> |
FXCollections.observableList(java.util.List<E> list)
Constructs an ObservableList that is backed by the specified list.
|
static <E> ObservableList<E> |
FXCollections.observableList(java.util.List<E> list,
Callback<E,Observable[]> extractor)
Constructs an ObservableList that is backed by the specified list.
|
static <E> ObservableList<E> |
FXCollections.singletonObservableList(E e)
Creates an unmodifiable observable list with single element.
|
static <E> ObservableList<E> |
FXCollections.synchronizedObservableList(ObservableList<E> list)
Creates and returns a synchronized wrapper on top of provided observable list.
|
static <E> ObservableList<E> |
FXCollections.unmodifiableObservableList(ObservableList<E> list)
Creates and returns unmodifiable wrapper list on top of provided observable list.
|
Modifier and Type | Method and Description |
---|---|
static <E> ObservableList<E> |
FXCollections.checkedObservableList(ObservableList<E> list,
java.lang.Class<E> type)
Creates and returns a typesafe wrapper on top of provided observable list.
|
static <E> ObservableList<E> |
FXCollections.concat(ObservableList<E>... lists)
Concatenates more observable lists into one.
|
static <T> void |
FXCollections.copy(ObservableList<? super T> dest,
java.util.List<? extends T> src)
Copies elements from src to dest.
|
static <T> void |
FXCollections.fill(ObservableList<? super T> list,
T obj)
Fills the provided list with obj.
|
static <T> boolean |
FXCollections.replaceAll(ObservableList<T> list,
T oldVal,
T newVal)
Replace all oldVal elements in the list with newVal element.
|
static void |
FXCollections.reverse(ObservableList list)
Reverse the order in the list
Fires only one change notification on the list.
|
static void |
FXCollections.rotate(ObservableList list,
int distance)
Rotates the list by distance.
|
static void |
FXCollections.shuffle(ObservableList<?> list)
Shuffles all elements in the observable list.
|
static void |
FXCollections.shuffle(ObservableList list,
java.util.Random rnd)
Shuffles all elements in the observable list.
|
static <T extends java.lang.Comparable<? super T>> |
FXCollections.sort(ObservableList<T> list)
Sorts the provided observable list.
|
static <T> void |
FXCollections.sort(ObservableList<T> list,
java.util.Comparator<? super T> c)
Sorts the provided observable list using the c comparator.
|
static <E> ObservableList<E> |
FXCollections.synchronizedObservableList(ObservableList<E> list)
Creates and returns a synchronized wrapper on top of provided observable list.
|
static <E> ObservableList<E> |
FXCollections.unmodifiableObservableList(ObservableList<E> list)
Creates and returns unmodifiable wrapper list on top of provided observable list.
|
Constructor and Description |
---|
FXCollections.CheckedObservableList(ObservableList<T> list,
java.lang.Class<T> type) |
FXCollections.SynchronizedObservableList(ObservableList<T> seq) |
FXCollections.SynchronizedObservableList(ObservableList<T> seq,
java.lang.Object mutex) |
FXCollections.UnmodifiableObservableListImpl(ObservableList<T> backingList) |
ListChangeListener.Change(ObservableList<E> list)
Constructs a new change done to a list.
|
Modifier and Type | Field and Description |
---|---|
ObservableList<java.lang.Object> |
FXMLLoader.ObservableListChangeAdapter.source |
Constructor and Description |
---|
FXMLLoader.ObservableListChangeAdapter(ObservableList<java.lang.Object> source,
EventHandler<com.sun.javafx.fxml.ObservableListChangeEvent<?>> handler) |
Modifier and Type | Field and Description |
---|---|
private ObservableList<Node> |
Parent.children
A ObservableList of child
Node s. |
private ObservableList<java.lang.String> |
Node.styleClass
A list of String identifiers which can be used to logically group
Nodes, specifically for an external style engine.
|
private ObservableList<java.lang.String> |
Scene.stylesheets
A ObservableList of string URLs linking to the stylesheets to use with this scene's
contents.
|
private ObservableList<java.lang.String> |
Parent.stylesheets
A ObservableList of string URLs linking to the stylesheets to use with this scene's
contents.
|
private ObservableList<Transform> |
Node.NodeTransformation.transforms |
Modifier and Type | Method and Description |
---|---|
protected ObservableList<Node> |
Parent.getChildren()
Gets the list of children of this
Parent . |
ObservableList<Node> |
Group.getChildren()
Gets the list of children of this
Group . |
ObservableList<Node> |
Parent.getChildrenUnmodifiable()
Gets the list of children of this
Parent as a read-only
list. |
ObservableList<java.lang.String> |
Node.getStyleClass() |
ObservableList<java.lang.String> |
Scene.getStylesheets()
Gets an observable list of string URLs linking to the stylesheets to use
with this scene's contents.
|
ObservableList<java.lang.String> |
Parent.getStylesheets()
Gets an observable list of string URLs linking to the stylesheets to use
with this Parent's contents.
|
ObservableList<Transform> |
Node.getTransforms()
Defines the ObservableList of
Transform objects
to be applied to this Node . |
ObservableList<Transform> |
Node.NodeTransformation.getTransforms() |
private ObservableList<Transform> |
Node.transformsProperty() |
Modifier and Type | Method and Description |
---|---|
ObservableMap<KeyCombination,ObservableList<Mnemonic>> |
Scene.getMnemonics()
Gets the list of mnemonics for this
Scene . |
Modifier and Type | Field and Description |
---|---|
private ObservableList<java.lang.String> |
CategoryAxisBuilder.categories |
private ObservableList<XYChart.Series<X,Y>> |
XYChartBuilder.data |
private ObservableList<PieChart.Data> |
PieChartBuilder.data |
private ObservableList<Axis.TickMark<T>> |
Axis.tickMarks |
private ObservableList<Axis.TickMark<T>> |
Axis.unmodifiableTickMarks |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<ObservableList<java.lang.String>> |
CategoryAxis.categories
The ordered list of categories plotted on this axis.
|
private ObjectProperty<ObservableList<XYChart.Series<X,Y>>> |
XYChart.data
XYCharts data
|
private ObjectProperty<ObservableList<XYChart.Data<X,Y>>> |
XYChart.Series.data
ObservableList of data items that make up this series
|
private ObjectProperty<ObservableList<PieChart.Data>> |
PieChart.data
PieCharts data
|
Modifier and Type | Method and Description |
---|---|
ObservableList<java.lang.String> |
CategoryAxis.getCategories()
Returns a
ObservableList of categories plotted on this axis. |
protected ObservableList<Node> |
Chart.getChartChildren()
Modifiable and observable list of all content in the chart.
|
ObservableList<XYChart.Series<X,Y>> |
XYChart.getData()
Gets the value of the property data.
|
ObservableList<XYChart.Data<X,Y>> |
XYChart.Series.getData()
Gets the value of the property data.
|
ObservableList<PieChart.Data> |
PieChart.getData()
Gets the value of the property data.
|
protected ObservableList<Node> |
XYChart.getPlotChildren()
Modifiable and observable list of all content in the plot.
|
ObservableList<Axis.TickMark<T>> |
Axis.getTickMarks()
Unmodifiable observable list of tickmarks, each TickMark directly representing a tickmark on this axis.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<ObservableList<XYChart.Series<X,Y>>> |
XYChart.dataProperty()
XYCharts data
|
ObjectProperty<ObservableList<XYChart.Data<X,Y>>> |
XYChart.Series.dataProperty()
ObservableList of data items that make up this series
|
ObjectProperty<ObservableList<PieChart.Data>> |
PieChart.dataProperty()
PieCharts data
|
Modifier and Type | Method and Description |
---|---|
CategoryAxisBuilder |
CategoryAxisBuilder.categories(ObservableList<java.lang.String> x)
Set the value of the
categories property for the instance constructed by this builder. |
B |
PieChartBuilder.data(ObservableList<PieChart.Data> x)
Set the value of the
data property for the instance constructed by this builder. |
B |
XYChartBuilder.data(ObservableList<XYChart.Series<X,Y>> x)
Set the value of the
data property for the instance constructed by this builder. |
void |
CategoryAxis.setCategories(ObservableList<java.lang.String> value) |
void |
PieChart.setData(ObservableList<PieChart.Data> value)
Sets the value of the property data.
|
void |
XYChart.Series.setData(ObservableList<XYChart.Data<X,Y>> value)
Sets the value of the property data.
|
void |
XYChart.setData(ObservableList<XYChart.Series<X,Y>> value)
Sets the value of the property data.
|
Constructor and Description |
---|
AreaChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new Area Chart with the given axis and data
|
BarChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new BarChart with the given axis and data.
|
BarChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data,
double categoryGap)
Construct a new BarChart with the given axis and data.
|
BubbleChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new BubbleChart with the given axis and data.
|
CategoryAxis(ObservableList<java.lang.String> categories)
Create a category axis with the given categories.
|
LineChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new LineChart with the given axis and data.
|
PieChart(ObservableList<PieChart.Data> data)
Construct a new PieChart with the given data
|
ScatterChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new ScatterChart with the given axis and data.
|
StackedAreaChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new Area Chart with the given axis and data
|
StackedBarChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new StackedBarChart with the given axis and data.
|
StackedBarChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data,
double categoryGap)
Construct a new StackedBarChart with the given axis and data.
|
XYChart.Series(ObservableList<XYChart.Data<X,Y>> data)
Constructs a Series and populates it with the given
ObservableList data. |
XYChart.Series(java.lang.String name,
ObservableList<XYChart.Data<X,Y>> data)
Constructs a named Series and populates it with the given
ObservableList data. |
Modifier and Type | Field and Description |
---|---|
private ObservableList<TreeItem<T>> |
TreeItem.children |
private ObservableList<TableColumn<S,?>> |
TableView.columns
*
Instance Variables *
*
|
private ObservableList<TableColumn<S,?>> |
TableColumn.columns
*
Instance Variables *
*
|
private ObservableList<Color> |
ColorPicker.customColors
The custom colors added to the Color Palette by the user.
|
private ObservableList<SplitPane.Divider> |
SplitPane.dividers |
private ObservableList<Node> |
ToolBar.items |
private ObservableList<Node> |
SplitPane.items
*
Instance Variables *
*
|
private ObservableList<MenuItem> |
MenuButton.items
*
Properties *
*
|
private ObservableList<MenuItem> |
Menu.items
*
Instance variables *
*
|
private ObservableList<MenuItem> |
ContextMenu.items |
private ObservableList<S> |
TableViewBuilder.items |
private ObservableList<T> |
ListViewBuilder.items |
private ObservableList<T> |
ComboBoxBuilder.items |
private ObservableList<T> |
ChoiceBoxBuilder.items |
private ObservableList<Menu> |
MenuBar.menus
*
Instance variables *
*
|
private ObservableList<TitledPane> |
Accordion.panes
*
Instance Variables *
*
|
private ObservableList<TablePosition> |
TableView.TableViewArrayListSelectionModel.selectedCells
*
Observable properties (and getters/setters) *
*
|
private ObservableList<TableColumn<S,?>> |
TableView.sortOrder |
private ObservableList<java.lang.String> |
TableColumn.styleClass |
private ObservableList<java.lang.String> |
Tab.styleClass |
private ObservableList<java.lang.String> |
PopupControl.styleClass
A list of String identifiers which can be used to logically group
Nodes, specifically for an external style engine.
|
private ObservableList<java.lang.String> |
MenuItem.styleClass
*
Instance Variables *
*
|
private ObservableList<Tab> |
TabPane.tabs |
private ObservableList<Toggle> |
ToggleGroup.toggles |
private ObservableList<SplitPane.Divider> |
SplitPane.unmodifiableDividers |
private ObservableList<TableColumn<S,?>> |
TableView.unmodifiableVisibleLeafColumns |
private ObservableList<TableColumn<S,?>> |
TableView.visibleLeafColumns |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<ObservableList<S>> |
TableView.items |
private ObjectProperty<ObservableList<T>> |
ListView.items
*
Properties *
*
|
private ObjectProperty<ObservableList<T>> |
ComboBox.items
The list of items to show within the ComboBox popup.
|
private ObjectProperty<ObservableList<T>> |
ChoiceBox.items
The items to display in the choice box.
|
private ChangeListener<ObservableList<T>> |
ListView.ListViewFocusModel.itemsListener |
private ChangeListener<ObservableList<T>> |
ListView.ListViewBitSetSelectionModel.itemsObserver |
private ChangeListener<ObservableList<T>> |
ComboBox.ComboBoxSelectionModel.itemsObserver |
private ChangeListener<ObservableList<S>> |
TableView.TableViewArrayListSelectionModel.itemsPropertyListener |
private ChangeListener<ObservableList<S>> |
TableView.TableViewFocusModel.itemsPropertyListener |
private WeakChangeListener<ObservableList<T>> |
ListView.ListViewFocusModel.weakItemsListener |
private WeakChangeListener<ObservableList<S>> |
TableView.TableViewArrayListSelectionModel.weakItemsPropertyListener |
private WeakChangeListener<ObservableList<S>> |
TableView.TableViewFocusModel.weakItemsPropertyListener |
Modifier and Type | Method and Description |
---|---|
ObservableList<TreeItem<T>> |
TreeItem.getChildren()
The children of this TreeItem.
|
ObservableList<TableColumn<S,?>> |
TableView.getColumns()
The TableColumns that are part of this TableView.
|
ObservableList<TableColumn<S,?>> |
TableColumn.getColumns()
This enables support for nested columns, which can be useful to group
together related data.
|
ObservableList<Color> |
ColorPicker.getCustomColors() |
ObservableList<SplitPane.Divider> |
SplitPane.getDividers()
Returns an unmodifiable list of all the dividers in this SplitPane.
|
ObservableList<Node> |
ToolBar.getItems()
The items contained in the
ToolBar . |
ObservableList<S> |
TableView.getItems()
Gets the value of the property items.
|
ObservableList<Node> |
SplitPane.getItems()
Returns an ObservableList which can be use to modify the contents of the SplitPane.
|
ObservableList<MenuItem> |
MenuButton.getItems()
The items to show within this buttons menu.
|
ObservableList<MenuItem> |
Menu.getItems()
The items to show within this menu.
|
ObservableList<T> |
ListView.getItems()
Returns an
ObservableList that contains the items currently being
shown to the user. |
ObservableList<MenuItem> |
ContextMenu.getItems()
The menu items on the context menu.
|
ObservableList<T> |
ComboBox.getItems()
Gets the value of the property items.
|
ObservableList<T> |
ChoiceBox.getItems()
Gets the value of the property items.
|
ObservableList<Menu> |
MenuBar.getMenus()
The menus to show within this MenuBar.
|
ObservableList<TitledPane> |
Accordion.getPanes()
Gets the list of
TitledPane in this Accordion. |
ObservableList<java.lang.CharSequence> |
TextArea.getParagraphs()
Returns an unmodifiable list of the character sequences that back the
text area's content.
|
abstract ObservableList<TablePosition> |
TableView.TableViewSelectionModel.getSelectedCells()
A read-only ObservableList representing the currently selected cells
in this TableView.
|
ObservableList<TablePosition> |
TableView.TableViewArrayListSelectionModel.getSelectedCells() |
ObservableList<java.lang.Integer> |
TableView.TableViewArrayListSelectionModel.getSelectedIndices() |
ObservableList<java.lang.Integer> |
MultipleSelectionModelBase.getSelectedIndices() |
abstract ObservableList<java.lang.Integer> |
MultipleSelectionModel.getSelectedIndices()
Returns a read-only ObservableList of all selected indices.
|
ObservableList<S> |
TableView.TableViewArrayListSelectionModel.getSelectedItems() |
ObservableList<T> |
MultipleSelectionModelBase.getSelectedItems() |
abstract ObservableList<T> |
MultipleSelectionModel.getSelectedItems()
Returns a read-only ObservableList of all selected items.
|
ObservableList<TableColumn<S,?>> |
TableView.getSortOrder()
The sortOrder list defines the order in which
TableColumn instances
are sorted. |
ObservableList<java.lang.String> |
TableColumn.getStyleClass()
A list of String identifiers which can be used to logically group
Nodes, specifically for an external style engine.
|
ObservableList<java.lang.String> |
Tab.getStyleClass()
A list of String identifiers which can be used to logically group
Nodes, specifically for an external style engine.
|
ObservableList<java.lang.String> |
PopupControl.getStyleClass()
Returns the list of String identifiers that make up the styleClass
for this PopupControl.
|
ObservableList<java.lang.String> |
MenuItem.getStyleClass()
*
Public API *
*
|
ObservableList<Tab> |
TabPane.getTabs()
The tabs to display in this TabPane.
|
ObservableList<Toggle> |
ToggleGroup.getToggles()
The list of toggles within the ToggleGroup.
|
ObservableList<TableColumn<S,?>> |
TableView.getVisibleLeafColumns()
Returns an unmodifiable list containing the currently visible leaf columns.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<ObservableList<S>> |
TableView.itemsProperty()
The underlying data model for the TableView.
|
ObjectProperty<ObservableList<T>> |
ListView.itemsProperty()
The underlying data model for the ListView.
|
ObjectProperty<ObservableList<T>> |
ComboBox.itemsProperty()
The list of items to show within the ComboBox popup.
|
ObjectProperty<ObservableList<T>> |
ChoiceBox.itemsProperty()
The items to display in the choice box.
|
Modifier and Type | Method and Description |
---|---|
B |
TableViewBuilder.items(ObservableList<S> x)
Set the value of the
items property for the instance constructed by this builder. |
B |
ListViewBuilder.items(ObservableList<T> x)
Set the value of the
items property for the instance constructed by this builder. |
B |
ComboBoxBuilder.items(ObservableList<T> x)
Set the value of the
items property for the instance constructed by this builder. |
B |
ChoiceBoxBuilder.items(ObservableList<T> x)
Set the value of the
items property for the instance constructed by this builder. |
void |
TableView.setItems(ObservableList<S> value)
Sets the value of the property items.
|
void |
ListView.setItems(ObservableList<T> value)
Sets the underlying data model for the ListView.
|
void |
ComboBox.setItems(ObservableList<T> value)
Sets the value of the property items.
|
void |
ChoiceBox.setItems(ObservableList<T> value)
Sets the value of the property items.
|
private void |
TableView.TableViewArrayListSelectionModel.updateItemsObserver(ObservableList<S> oldList,
ObservableList<S> newList) |
private void |
TableView.TableViewArrayListSelectionModel.updateItemsObserver(ObservableList<S> oldList,
ObservableList<S> newList) |
private void |
TableView.TableViewFocusModel.updateItemsObserver(ObservableList<S> oldList,
ObservableList<S> newList) |
private void |
TableView.TableViewFocusModel.updateItemsObserver(ObservableList<S> oldList,
ObservableList<S> newList) |
private void |
ListView.ListViewBitSetSelectionModel.updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
private void |
ListView.ListViewBitSetSelectionModel.updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
private void |
ListView.ListViewFocusModel.updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
private void |
ListView.ListViewFocusModel.updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
private void |
ComboBox.ComboBoxSelectionModel.updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
private void |
ComboBox.ComboBoxSelectionModel.updateItemsObserver(ObservableList<T> oldList,
ObservableList<T> newList) |
Constructor and Description |
---|
ChoiceBox(ObservableList<T> items)
Create a new ChoiceBox with the given set of items.
|
ComboBox(ObservableList<T> items)
Creates a default ComboBox instance with the provided items list and
a default
selection model . |
ListView(ObservableList<T> items)
Creates a default ListView which will stack the contents retrieved from the
provided
ObservableList vertically. |
TableView(ObservableList<S> items)
Creates a TableView with the content provided in the items ObservableList.
|
TextArea.ParagraphListChange(ObservableList<java.lang.CharSequence> list,
int from,
int to,
java.util.List<java.lang.CharSequence> removed) |
Modifier and Type | Field and Description |
---|---|
private ObservableList<T> |
ComboBoxTreeCell.items
*
Fields *
*
|
private ObservableList<T> |
ComboBoxTableCell.items
*
Fields *
*
|
private ObservableList<T> |
ComboBoxListCell.items
*
Fields *
*
|
private ObservableList<T> |
ChoiceBoxTreeCell.items
*
Fields *
*
|
private ObservableList<T> |
ChoiceBoxTableCell.items
*
Fields *
*
|
private ObservableList<T> |
ChoiceBoxListCell.items
*
Fields *
*
|
Modifier and Type | Method and Description |
---|---|
ObservableList<T> |
ComboBoxTreeCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.
|
ObservableList<T> |
ComboBoxTableCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.
|
ObservableList<T> |
ComboBoxListCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.
|
ObservableList<T> |
ChoiceBoxTreeCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.
|
ObservableList<T> |
ChoiceBoxTableCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.
|
ObservableList<T> |
ChoiceBoxListCell.getItems()
Returns the items to be displayed in the ChoiceBox when it is showing.
|
Modifier and Type | Method and Description |
---|---|
(package private) static <T> ChoiceBox<T> |
CellUtils.createChoiceBox(Cell<T> cell,
ObservableList<T> items) |
(package private) static <T> ComboBox<T> |
CellUtils.createComboBox(Cell<T> cell,
ObservableList<T> items) |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(ObservableList<T> items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ComboBoxListCell.forListView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
ListView controls. |
static <T> Callback<ListView<T>,ListCell<T>> |
ChoiceBoxListCell.forListView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
ListView controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(ObservableList<T> items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ComboBoxTreeCell.forTreeView(ObservableList<T> items)
Creates a ComboBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ChoiceBoxTreeCell.forTreeView(ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ComboBoxTreeCell.forTreeView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ComboBox cell factory for use in
TreeView controls. |
static <T> Callback<TreeView<T>,TreeCell<T>> |
ChoiceBoxTreeCell.forTreeView(StringConverter<T> converter,
ObservableList<T> items)
Creates a ChoiceBox cell factory for use in
TreeView controls. |
Constructor and Description |
---|
ChoiceBoxListCell(ObservableList<T> items)
Creates a default
ChoiceBoxListCell instance with the given items
being used to populate the ChoiceBox when it is shown. |
ChoiceBoxListCell(StringConverter<T> converter,
ObservableList<T> items)
Creates a
ChoiceBoxListCell instance with the given items
being used to populate the ChoiceBox when it is shown, and the
StringConverter being used to convert the item in to a
user-readable form. |
ChoiceBoxTableCell(ObservableList<T> items)
Creates a default
ChoiceBoxTableCell instance with the given items
being used to populate the ChoiceBox when it is shown. |
ChoiceBoxTableCell(StringConverter<T> converter,
ObservableList<T> items)
Creates a
ChoiceBoxTableCell instance with the given items
being used to populate the ChoiceBox when it is shown, and the
StringConverter being used to convert the item in to a
user-readable form. |
ChoiceBoxTreeCell(ObservableList<T> items)
Creates a default
ChoiceBoxTreeCell instance with the given items
being used to populate the ChoiceBox when it is shown. |
ChoiceBoxTreeCell(StringConverter<T> converter,
ObservableList<T> items)
Creates a
ChoiceBoxTreeCell instance with the given items
being used to populate the ChoiceBox when it is shown, and the
StringConverter being used to convert the item in to a
user-readable form. |
ComboBoxListCell(ObservableList<T> items)
Creates a default
ComboBoxListCell instance with the given items
being used to populate the ComboBox when it is shown. |
ComboBoxListCell(StringConverter<T> converter,
ObservableList<T> items)
Creates a
ComboBoxListCell instance with the given items
being used to populate the ComboBox when it is shown, and the
StringConverter being used to convert the item in to a
user-readable form. |
ComboBoxTableCell(ObservableList<T> items)
Creates a default
ComboBoxTableCell instance with the given items
being used to populate the ComboBox when it is shown. |
ComboBoxTableCell(StringConverter<T> converter,
ObservableList<T> items)
Creates a
ComboBoxTableCell instance with the given items
being used to populate the ComboBox when it is shown, and the
StringConverter being used to convert the item in to a
user-readable form. |
ComboBoxTreeCell(ObservableList<T> items)
Creates a default
ComboBoxTreeCell instance with the given items
being used to populate the ComboBox when it is shown. |
ComboBoxTreeCell(StringConverter<T> converter,
ObservableList<T> items)
Creates a
ComboBoxTreeCell instance with the given items
being used to populate the ComboBox when it is shown, and the
StringConverter being used to convert the item in to a
user-readable form. |
Modifier and Type | Field and Description |
---|---|
private ObservableList<InputMethodTextRun> |
InputMethodEvent.composed
The text under composition.
|
Modifier and Type | Method and Description |
---|---|
ObservableList<InputMethodTextRun> |
InputMethodEvent.getComposed()
Gets the text under composition.
|
Modifier and Type | Method and Description |
---|---|
static InputMethodEvent |
InputMethodEvent.impl_inputMethodEvent(EventTarget target,
ObservableList<InputMethodTextRun> composed,
java.lang.String committed,
int caretPosition,
EventType<? extends InputMethodEvent> eventType)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<ColumnConstraints> |
GridPane.columnConstraints
ColumnConstraints instances can be added to explicitly control individual column
sizing and layout behavior.
|
private ObservableList<RowConstraints> |
GridPane.rowConstraints
RowConstraints instances can be added to explicitly control individual row
sizing and layout behavior.
|
Modifier and Type | Method and Description |
---|---|
ObservableList<Node> |
Pane.getChildren() |
ObservableList<ColumnConstraints> |
GridPane.getColumnConstraints()
Returns list of column constraints.
|
ObservableList<RowConstraints> |
GridPane.getRowConstraints()
Returns list of row constraints.
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<EqualizerBand> |
AudioEqualizer.bands |
private ObservableList<Track> |
Media.tracks
An
ObservableList of tracks contained in this media object. |
private ObservableList<Track> |
Media.tracksBacking |
Modifier and Type | Method and Description |
---|---|
ObservableList<EqualizerBand> |
AudioEqualizer.getBands()
ObservableList containing
EqualizerBand elements. |
ObservableList<Track> |
Media.getTracks()
Retrieve the tracks contained in this media source.
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<java.lang.Double> |
Shape.StrokeAttributes.dashArray |
private ObservableList<PathElement> |
Path.elements
Defines the array of path elements of this path.
|
private ObservableList<java.lang.Double> |
Polyline.points
Defines the coordinates of the polyline segments.
|
private ObservableList<java.lang.Double> |
Polygon.points
Defines the coordinates of the polygon vertices.
|
Modifier and Type | Method and Description |
---|---|
ObservableList<java.lang.Double> |
Shape.StrokeAttributes.dashArrayProperty() |
ObservableList<PathElement> |
Path.getElements()
Gets observable list of path elements of this path.
|
ObservableList<java.lang.Double> |
Polyline.getPoints()
Gets the coordinates of the
PolyLine segments. |
ObservableList<java.lang.Double> |
Polygon.getPoints()
Gets the coordinates of the
Polygon vertices. |
ObservableList<java.lang.Double> |
Shape.getStrokeDashArray()
Defines the array representing the lengths of the dash segments.
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<WebHistory.Entry> |
WebHistory.list |
private ObservableList<WebHistory.Entry> |
WebHistory.ulist |
Modifier and Type | Method and Description |
---|---|
protected ObservableList<Node> |
WebView.getChildren() |
ObservableList<WebHistory.Entry> |
WebHistory.getEntries()
Returns an unmodifiable observable list of all entries in the history.
|
Modifier and Type | Field and Description |
---|---|
private ObservableList<FileChooser.ExtensionFilter> |
FileChooser.extensionFilters
Specifies the extension filters used in the displayed file dialog.
|
private ObservableList<Image> |
Stage.icons
Defines the icon images to be used in the window decorations and when
minimized.
|
private static ObservableList<Screen> |
Screen.screens |
private static ObservableList<Stage> |
Stage.stages |
Modifier and Type | Method and Description |
---|---|
protected ObservableList<Node> |
PopupWindow.getContent()
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
ObservableList<Node> |
Popup.getContent()
The ObservableList of
Node s to be rendered on this
Popup . |
ObservableList<FileChooser.ExtensionFilter> |
FileChooser.getExtensionFilters()
Gets the extension filters used in the displayed file dialog.
|
ObservableList<Image> |
Stage.getIcons()
Gets the icon images to be used in the window decorations and when
minimized.
|
static ObservableList<Screen> |
Screen.getScreens()
The observable list of currently available
Screens . |
static ObservableList<Screen> |
Screen.getScreensForRectangle(double x,
double y,
double width,
double height)
Returns a ObservableList of
Screens that intersects the provided rectangle. |
static ObservableList<Screen> |
Screen.getScreensForRectangle(Rectangle2D r)
Returns a ObservableList of
Screens that intersects the provided rectangle. |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to