Uses of Class
javafx.scene.control.ListView
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 ListView in javafx.scene.control
Modifier and TypeMethodDescriptionListCell.getListView()
Gets the value of thelistView
property.ListView.EditEvent.getSource()
Returns the ListView upon which the edit took place.Modifier and TypeMethodDescriptionComboBox.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.final ReadOnlyObjectProperty
<ListView<T>> ListCell.listViewProperty()
The ListView associated with this Cell.Modifier and TypeMethodDescriptionfinal void
ListCell.updateListView
(ListView<T> listView) Updates the ListView associated with this Cell.Modifier and TypeMethodDescriptionfinal void
Sets the value of thecellFactory
property.final void
Sets a new cell factory to use in the ListView. -
Uses of ListView in javafx.scene.control.cell
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()
TextFieldListCell.forListView
(StringConverter<T> converter) -
Uses of ListView in javafx.scene.control.skin
Modifier and TypeClassDescriptionclass
ListViewSkin<T>
Default skin implementation for theListView
control.ModifierConstructorDescriptionListViewSkin
(ListView<T> control) Creates a new ListViewSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events.