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.See: Description
| Class | Description |
|---|---|
| CheckBoxListCell<T> | |
| CheckBoxTableCell<S,T> | |
| CheckBoxTreeCell<T> | |
| CheckBoxTreeTableCell<S,T> |
A class containing a
TreeTableCell implementation that draws a
CheckBox node inside the cell, optionally with a label to indicate
what the checkbox represents. |
| ChoiceBoxListCell<T> | |
| ChoiceBoxTableCell<S,T> | |
| ChoiceBoxTreeCell<T> | |
| ChoiceBoxTreeTableCell<S,T> |
A class containing a
TreeTableCell implementation that draws a
ChoiceBox node inside the cell. |
| ComboBoxListCell<T> | |
| ComboBoxTableCell<S,T> | |
| ComboBoxTreeCell<T> | |
| ComboBoxTreeTableCell<S,T> |
A class containing a
TreeTableCell implementation that draws a
ComboBox node inside the cell. |
| MapValueFactory<T> |
A convenience implementation of the Callback interface, designed specifically
for use within the
TableColumn
cell value factory. |
| ProgressBarTableCell<S> |
A class containing a
TableCell implementation that draws a
ProgressBar node inside the cell. |
| ProgressBarTreeTableCell<S> |
A class containing a
TreeTableCell implementation that draws a
ProgressBar node inside the cell. |
| PropertyValueFactory<S,T> |
A convenience implementation of the Callback interface, designed specifically
for use within the
TableColumn
cell value factory. |
| TextFieldListCell<T> | |
| TextFieldTableCell<S,T> | |
| TextFieldTreeCell<T> | |
| TextFieldTreeTableCell<S,T> |
A class containing a
TableCell implementation that draws a
TextField node inside the cell. |
| TreeItemPropertyValueFactory<S,T> |
A convenience implementation of the Callback interface, designed specifically
for use within the
TreeTableColumn
cell value factory. |
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.
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.