Uses of Class
javafx.scene.control.MultipleSelectionModel
Packages that use 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
Subclasses of MultipleSelectionModel in javafx.scene.controlModifier 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.Methods in javafx.scene.control that return MultipleSelectionModelModifier and TypeMethodDescriptionListView.getSelectionModel()
Returns the currently installed selection model.TreeView.getSelectionModel()
Returns the currently installed selection model.Methods in javafx.scene.control that return types with arguments of type MultipleSelectionModelModifier and TypeMethodDescriptionListView.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.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.Methods in javafx.scene.control with parameters of type MultipleSelectionModelModifier and TypeMethodDescriptionvoid
ListView.setSelectionModel(MultipleSelectionModel<T> value)
Sets theMultipleSelectionModel
to be used in the ListView.void
TreeView.setSelectionModel(MultipleSelectionModel<TreeItem<T>> value)
Sets theMultipleSelectionModel
to be used in the TreeView.