Uses of Class
javafx.scene.control.ListCell
Package
Description
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.
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
.The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
-
Uses of ListCell in javafx.scene.control
Modifier and TypeMethodDescriptionComboBox.getButtonCell()
Gets the value of thebuttonCell
property.Modifier and TypeMethodDescriptionComboBox.buttonCellProperty()
The button cell is used to render what is shown in the ComboBox 'button' area.ComboBox.cellFactoryProperty()
Providing a custom cell factory allows for complete customization of the rendering of items in the ComboBox.ListView.cellFactoryProperty()
Setting a custom cell factory has the effect of deferring all cell creation, allowing for total customization of the cell.ComboBox.getCellFactory()
Gets the value of thecellFactory
property.ListView.getCellFactory()
Returns the current cell factory.Modifier and TypeMethodDescriptionfinal void
ComboBox.setButtonCell
(ListCell<T> value) Sets the value of thebuttonCell
property. -
Uses of ListCell in javafx.scene.control.cell
Modifier and TypeClassDescriptionclass
class
class
class
Modifier and TypeMethodDescriptionCheckBoxListCell.forListView
(Callback<T, ObservableValue<Boolean>> getSelectedProperty) Creates a cell factory for use in ListView controls.CheckBoxListCell.forListView
(Callback<T, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a cell factory for use in ListView controls.ChoiceBoxListCell.forListView
(ObservableList<T> items) Creates a ChoiceBox cell factory for use inListView
controls.ChoiceBoxListCell.forListView
(StringConverter<T> converter, ObservableList<T> items) Creates a ChoiceBox cell factory for use inListView
controls.ChoiceBoxListCell.forListView
(StringConverter<T> converter, T... items) Creates a ChoiceBox cell factory for use inListView
controls.ChoiceBoxListCell.forListView
(T... items) Creates a ChoiceBox cell factory for use inListView
controls.ComboBoxListCell.forListView
(ObservableList<T> items) Creates a ComboBox cell factory for use inListView
controls.ComboBoxListCell.forListView
(StringConverter<T> converter, ObservableList<T> items) Creates a ComboBox cell factory for use inListView
controls.ComboBoxListCell.forListView
(StringConverter<T> converter, T... items) Creates a ComboBox cell factory for use inListView
controls.ComboBoxListCell.forListView
(T... items) Creates a ComboBox cell factory for use inListView
controls.TextFieldListCell.forListView()
Provides aTextField
that allows editing of the cell content when the cell is double-clicked, or whenListView.edit(int)
is called.TextFieldListCell.forListView
(StringConverter<T> converter) Provides aTextField
that allows editing of the cell content when the cell is double-clicked, or whenListView.edit(int)
is called. -
Uses of ListCell in javafx.scene.control.skin
ModifierConstructorDescriptionListCellSkin
(ListCell<T> control) Creates a new ListCellSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events.