Uses of Class
javafx.scene.control.ListCell
Packages that use 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.controlMethods in javafx.scene.control that return ListCellModifier and TypeMethodDescriptionComboBox.getButtonCell()Gets the value of thebuttonCellproperty.Methods in javafx.scene.control that return types with arguments of type ListCellModifier and TypeMethodDescriptionfinal ObjectProperty<ListCell<T>> ComboBox.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 thecellFactoryproperty.ListView.getCellFactory()Returns the current cell factory.Methods in javafx.scene.control with parameters of type ListCellModifier and TypeMethodDescriptionfinal voidComboBox.setButtonCell(ListCell<T> value) Sets the value of thebuttonCellproperty.Method parameters in javafx.scene.control with type arguments of type ListCell
- 
Uses of ListCell in javafx.scene.control.cellSubclasses of ListCell in javafx.scene.control.cellModifier and TypeClassDescriptionclassclassclassclassMethods in javafx.scene.control.cell that return types with arguments of type ListCellModifier 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 inListViewcontrols.ChoiceBoxListCell.forListView(StringConverter<T> converter, ObservableList<T> items) Creates a ChoiceBox cell factory for use inListViewcontrols.ChoiceBoxListCell.forListView(StringConverter<T> converter, T... items) Creates a ChoiceBox cell factory for use inListViewcontrols.ChoiceBoxListCell.forListView(T... items) Creates a ChoiceBox cell factory for use inListViewcontrols.ComboBoxListCell.forListView(ObservableList<T> items) Creates a ComboBox cell factory for use inListViewcontrols.ComboBoxListCell.forListView(StringConverter<T> converter, ObservableList<T> items) Creates a ComboBox cell factory for use inListViewcontrols.ComboBoxListCell.forListView(StringConverter<T> converter, T... items) Creates a ComboBox cell factory for use inListViewcontrols.ComboBoxListCell.forListView(T... items) Creates a ComboBox cell factory for use inListViewcontrols.TextFieldListCell.forListView()Provides aTextFieldthat allows editing of the cell content when the cell is double-clicked, or whenListView.edit(int)is called.TextFieldListCell.forListView(StringConverter<T> converter) Provides aTextFieldthat 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.skinConstructors in javafx.scene.control.skin with parameters of type ListCellModifierConstructorDescriptionListCellSkin(ListCell<T> control) Creates a new ListCellSkin instance, installing the necessary child nodes into the Controlchildrenlist, as well as the necessary input mappings for handling key, mouse, etc events.