Package javafx.scene.control.cell
package 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
. At present this package
is relatively bare, but it is where future cell-related classes will be located.
It is important to note that whilst most cells in this package are editable, for a cells editing functionality to be enabled it is required that all related classes have editing enabled. For example, in a TableView, both the TableView and the relevant TableColumn must have setEditing(true) called.
-
ClassDescriptionCheckBoxTableCell<S,
T> A class containing aTreeTableCell
implementation that draws aCheckBox
node inside the cell, optionally with a label to indicate what the checkbox represents.ChoiceBoxTableCell<S,T> A class containing aTreeTableCell
implementation that draws aChoiceBox
node inside the cell.ComboBoxTableCell<S,T> A class containing aTreeTableCell
implementation that draws aComboBox
node inside the cell.A convenience implementation of the Callback interface, designed specifically for use within theTableColumn
cell value factory
.A class containing aTableCell
implementation that draws aProgressBar
node inside the cell.A class containing aTreeTableCell
implementation that draws aProgressBar
node inside the cell.PropertyValueFactory<S,T> A convenience implementation of the Callback interface, designed specifically for use within theTableColumn
cell value factory
.TextFieldTableCell<S,T> A convenience implementation of the Callback interface, designed specifically for use within theTreeTableColumn
cell value factory
.