Uses of Class
javafx.scene.control.IndexedCell
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 . |
javafx.scene.control.skin |
The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
|
-
Uses of IndexedCell in javafx.scene.control
Subclasses of IndexedCell in javafx.scene.control Modifier and Type Class Description class
ListCell<T>
class
TableCell<S,T>
Represents a single row/column intersection in aTableView
.class
TableRow<T>
TableRow is anIndexedCell
, but rarely needs to be used by developers creating TableView instances.class
TreeCell<T>
class
TreeTableCell<S,T>
Represents a single row/column intersection in aTreeTableView
.class
TreeTableRow<T>
TreeTableRow is anIndexedCell
, but rarely needs to be used by developers creating TreeTableView instances. -
Uses of IndexedCell in javafx.scene.control.cell
Subclasses of IndexedCell in javafx.scene.control.cell Modifier and Type Class Description class
CheckBoxListCell<T>
class
CheckBoxTableCell<S,T>
class
CheckBoxTreeCell<T>
class
CheckBoxTreeTableCell<S,T>
A class containing aTreeTableCell
implementation that draws aCheckBox
node inside the cell, optionally with a label to indicate what the checkbox represents.class
ChoiceBoxListCell<T>
class
ChoiceBoxTableCell<S,T>
class
ChoiceBoxTreeCell<T>
class
ChoiceBoxTreeTableCell<S,T>
A class containing aTreeTableCell
implementation that draws aChoiceBox
node inside the cell.class
ComboBoxListCell<T>
class
ComboBoxTableCell<S,T>
class
ComboBoxTreeCell<T>
class
ComboBoxTreeTableCell<S,T>
A class containing aTreeTableCell
implementation that draws aComboBox
node inside the cell.class
ProgressBarTableCell<S>
A class containing aTableCell
implementation that draws aProgressBar
node inside the cell.class
ProgressBarTreeTableCell<S>
A class containing aTreeTableCell
implementation that draws aProgressBar
node inside the cell.class
TextFieldListCell<T>
class
TextFieldTableCell<S,T>
class
TextFieldTreeCell<T>
class
TextFieldTreeTableCell<S,T>
-
Uses of IndexedCell in javafx.scene.control.skin
Classes in javafx.scene.control.skin with type parameters of type IndexedCell Modifier and Type Class Description class
TableCellSkinBase<S,T,C extends IndexedCell<T>>
Base skin for table cell controls, for example:TableCell
andTreeTableCell
.class
TableRowSkinBase<T,C extends IndexedCell,R extends IndexedCell>
TableRowSkinBase is the base skin class used by controls such asTableRow
andTreeTableRow
(the concrete classes areTableRowSkin
andTreeTableRowSkin
, respectively).class
TableRowSkinBase<T,C extends IndexedCell,R extends IndexedCell>
TableRowSkinBase is the base skin class used by controls such asTableRow
andTreeTableRow
(the concrete classes areTableRowSkin
andTreeTableRowSkin
, respectively).class
TableViewSkinBase<M,S,C extends Control,I extends IndexedCell<M>,TC extends TableColumnBase<S,?>>
TableViewSkinBase is the base skin class used by controls such asTableView
andTreeTableView
(the concrete classes areTableViewSkin
andTreeTableViewSkin
, respectively).class
VirtualContainerBase<C extends Control,I extends IndexedCell>
Parent class to control skins whose contents are virtualized and scrollable.class
VirtualFlow<T extends IndexedCell>
Implementation of a virtualized container using a cell based mechanism.