Uses of Class
javafx.scene.control.FocusModel
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 FocusModel in javafx.scene.control
Modifier and TypeClassDescriptionclass
TableFocusModel<T,
TC extends TableColumnBase<T, ?>> The abstract base class for FocusModel implementations that are used within table-like controls (most notablyTableView
andTreeTableView
).static class
AFocusModel
with additional functionality to support the requirements of a TableView control.static class
AFocusModel
with additional functionality to support the requirements of a TableView control.Modifier and TypeMethodDescriptionfinal FocusModel<T>
ListView.getFocusModel()
Returns the currently installedFocusModel
.final FocusModel<TreeItem<T>>
TreeView.getFocusModel()
Returns the currently installedFocusModel
.Modifier and TypeMethodDescriptionfinal ObjectProperty<FocusModel<T>>
ListView.focusModelProperty()
The FocusModel provides the API through which it is possible to both get and set the focus on a single item within a ListView.final ObjectProperty<FocusModel<TreeItem<T>>>
TreeView.focusModelProperty()
The FocusModel provides the API through which it is possible to control focus on zero or one rows of the TreeView.Modifier and TypeMethodDescriptionfinal void
ListView.setFocusModel
(FocusModel<T> value) Sets theFocusModel
to be used in the ListView.final void
TreeView.setFocusModel
(FocusModel<TreeItem<T>> value) Sets theFocusModel
to be used in the TreeView.