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  TreeTableCellimplementation that draws aCheckBoxnode 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  TreeTableCellimplementation that draws aChoiceBoxnode inside the cell. | 
| ComboBoxListCell<T> | |
| ComboBoxTableCell<S,T> | |
| ComboBoxTreeCell<T> | |
| ComboBoxTreeTableCell<S,T> | A class containing a  TreeTableCellimplementation that draws aComboBoxnode inside the cell. | 
| MapValueFactory<T> | A convenience implementation of the Callback interface, designed specifically
 for use within the  TableColumncell value factory. | 
| ProgressBarTableCell<S> | A class containing a  TableCellimplementation that draws aProgressBarnode inside the cell. | 
| ProgressBarTreeTableCell<S> | A class containing a  TreeTableCellimplementation that draws aProgressBarnode inside the cell. | 
| PropertyValueFactory<S,T> | A convenience implementation of the Callback interface, designed specifically
 for use within the  TableColumncell value factory. | 
| TextFieldListCell<T> | |
| TextFieldTableCell<S,T> | |
| TextFieldTreeCell<T> | |
| TextFieldTreeTableCell<S,T> | A class containing a  TableCellimplementation that draws aTextFieldnode inside the cell. | 
| TreeItemPropertyValueFactory<S,T> | A convenience implementation of the Callback interface, designed specifically
 for use within the  TreeTableColumncell 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.