Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
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 . |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> |
TableColumn.cellFactory
The cell factory for all cells in this column.
|
private Callback<TableColumn<S,T>,TableCell<S,T>> |
TableColumnBuilder.cellFactory |
static Callback<TableColumn<?,?>,TableCell<?,?>> |
TableColumn.DEFAULT_CELL_FACTORY
If no cellFactory is specified on a TableColumn instance, then this one
will be used by default.
|
Modifier and Type | Method and Description |
---|---|
TableCell<S,T> |
TableCellBuilder.build()
Make an instance of
TableCell based on the properties set on this builder. |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Callback<TableColumn<S,T>,TableCell<S,T>>> |
TableColumn.cellFactoryProperty()
The cell factory for all cells in this column.
|
Callback<TableColumn<S,T>,TableCell<S,T>> |
TableColumn.getCellFactory()
Gets the value of the property cellFactory.
|
Modifier and Type | Method and Description |
---|---|
B |
TableColumnBuilder.cellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> x)
Set the value of the
cellFactory property for the instance constructed by this builder. |
void |
TableColumn.setCellFactory(Callback<TableColumn<S,T>,TableCell<S,T>> value)
Sets the value of the property cellFactory.
|
Modifier and Type | Class and Description |
---|---|
class |
CheckBoxTableCell<S,T>
|
class |
ChoiceBoxTableCell<S,T>
|
class |
ComboBoxTableCell<S,T>
|
class |
ProgressBarTableCell<S>
A class containing a
TableCell implementation that draws a
ProgressBar node inside the cell. |
class |
TextFieldTableCell<S,T>
|
Modifier and Type | Method and Description |
---|---|
static <S> Callback<TableColumn<S,java.lang.String>,TableCell<S,java.lang.String>> |
TextFieldTableCell.forTableColumn()
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TableView.edit(int, javafx.scene.control.TableColumn) is called. |
static <S> Callback<TableColumn<S,java.lang.Double>,TableCell<S,java.lang.Double>> |
ProgressBarTableCell.forTableColumn()
Provides a
ProgressBar that allows easy visualisation of a Number
value as it proceeds from 0.0 to 1.0. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
boolean showLabel)
Creates a cell factory for use in a
TableColumn cell factory. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
CheckBoxTableCell.forTableColumn(Callback<java.lang.Integer,ObservableValue<java.lang.Boolean>> getSelectedProperty,
StringConverter<T> converter)
Creates a cell factory for use in a
TableColumn cell factory. |
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>> |
TextFieldTableCell.forTableColumn(StringConverter<T> converter)
Provides a
TextField that allows editing of the cell content when
the cell is double-clicked, or when
TableView.edit(int, javafx.scene.control.TableColumn) is called. |
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 <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(StringConverter<T> converter,
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,
T... items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ComboBoxTableCell.forTableColumn(T... items)
Creates a ComboBox cell factory for use in
TableColumn controls. |
static <S,T> Callback<TableColumn<S,T>,TableCell<S,T>> |
ChoiceBoxTableCell.forTableColumn(T... items)
Creates a ChoiceBox cell factory for use in
TableColumn controls. |
static <S> Callback<TableColumn<S,java.lang.Boolean>,TableCell<S,java.lang.Boolean>> |
CheckBoxTableCell.forTableColumn(TableColumn<S,java.lang.Boolean> column)
Creates a cell factory for use in a
TableColumn cell factory. |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to