|
Spec-Zone .ru
спецификации, руководства, описания, API
|
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> | |
| CheckBoxListCellBuilder<T,B extends CheckBoxListCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| CheckBoxTableCell<S,T> | |
| CheckBoxTableCellBuilder<S,T,B extends CheckBoxTableCellBuilder<S,T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| CheckBoxTreeCell<T> | |
| CheckBoxTreeCellBuilder<T,B extends CheckBoxTreeCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| 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> | |
| ChoiceBoxListCellBuilder<T,B extends ChoiceBoxListCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| ChoiceBoxTableCell<S,T> | |
| ChoiceBoxTableCellBuilder<S,T,B extends ChoiceBoxTableCellBuilder<S,T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| ChoiceBoxTreeCell<T> | |
| ChoiceBoxTreeCellBuilder<T,B extends ChoiceBoxTreeCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| ChoiceBoxTreeTableCell<S,T> |
A class containing a
TreeTableCell implementation that draws a
ChoiceBox node inside the cell. |
| ComboBoxListCell<T> | |
| ComboBoxListCellBuilder<T,B extends ComboBoxListCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| ComboBoxTableCell<S,T> | |
| ComboBoxTableCellBuilder<S,T,B extends ComboBoxTableCellBuilder<S,T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| ComboBoxTreeCell<T> | |
| ComboBoxTreeCellBuilder<T,B extends ComboBoxTreeCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| 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. |
| PropertyValueFactoryBuilder<S,T,B extends PropertyValueFactoryBuilder<S,T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| TextFieldListCell<T> | |
| TextFieldListCellBuilder<T,B extends TextFieldListCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| TextFieldTableCell<S,T> | |
| TextFieldTableCellBuilder<S,T,B extends TextFieldTableCellBuilder<S,T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| TextFieldTreeCell<T> | |
| TextFieldTreeCellBuilder<T,B extends TextFieldTreeCellBuilder<T,B>> | Deprecated
This class is deprecated and will be removed in the next version
|
| 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, 2013, Oracle and/or its affiliates. All rights reserved. Use is subject to .