Uses of Class
javafx.scene.control.MultipleSelectionModel
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.
-
Uses of MultipleSelectionModel in javafx.scene.control
Modifier and TypeClassDescriptionclass
The abstract base class for MultipleSelectionModel implementations that are used within table-like controls (most notablyTableView
andTreeTableView
).static class
A simple extension of theSelectionModel
abstract class to allow for special support for TableView controls.static class
A simple extension of theSelectionModel
abstract class to allow for special support for TreeTableView controls.Modifier and TypeMethodDescriptionfinal MultipleSelectionModel
<T> ListView.getSelectionModel()
Returns the currently installed selection model.final MultipleSelectionModel
<TreeItem<T>> TreeView.getSelectionModel()
Returns the currently installed selection model.Modifier and TypeMethodDescriptionfinal ObjectProperty
<MultipleSelectionModel<T>> ListView.selectionModelProperty()
The SelectionModel provides the API through which it is possible to select single or multiple items within a ListView, as well as inspect which items have been selected by the user.final ObjectProperty
<MultipleSelectionModel<TreeItem<T>>> TreeView.selectionModelProperty()
The SelectionModel provides the API through which it is possible to select single or multiple items within a TreeView, as well as inspect which rows have been selected by the user.Modifier and TypeMethodDescriptionfinal void
ListView.setSelectionModel
(MultipleSelectionModel<T> value) Sets theMultipleSelectionModel
to be used in the ListView.final void
TreeView.setSelectionModel
(MultipleSelectionModel<TreeItem<T>> value) Sets theMultipleSelectionModel
to be used in the TreeView.