Package | Description |
---|---|
com.sun.javafx.scene.control.behavior | |
javafx.scene.control |
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.
|
Modifier and Type | Class and Description |
---|---|
(package private) static class |
AccordionBehavior.AccordionFocusModel |
Modifier and Type | Method and Description |
---|---|
protected abstract FocusModel<?> |
CellBehaviorBase.getFocusModel() |
protected FocusModel<T> |
ListCellBehavior.getFocusModel() |
protected FocusModel<T> |
TableRowBehavior.getFocusModel() |
protected FocusModel<TreeItem<T>> |
TreeCellBehavior.getFocusModel() |
Modifier and Type | Class and Description |
---|---|
(package private) static class |
ListView.ListViewFocusModel<T> |
class |
TableFocusModel<T,TC extends TableColumnBase<T,?>>
The abstract base class for FocusModel implementations that are used within
table-like controls (most notably
TableView and TreeTableView . |
static class |
TableView.TableViewFocusModel<S>
A
FocusModel with additional functionality to support the requirements
of a TableView control. |
static class |
TreeTableView.TreeTableViewFocusModel<S>
A
FocusModel with additional functionality to support the requirements
of a TableView control. |
(package private) static class |
TreeView.TreeViewFocusModel<T> |
Modifier and Type | Field and Description |
---|---|
private FocusModel<T> |
ListViewBuilder.focusModel
Deprecated.
|
private FocusModel<TreeItem<T>> |
TreeViewBuilder.focusModel
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<FocusModel<T>> |
ListView.focusModel |
private ObjectProperty<FocusModel<TreeItem<T>>> |
TreeView.focusModel |
private ChangeListener<FocusModel<T>> |
ListCell.focusModelPropertyListener
Listens to the focusModel property on the ListView.
|
private ChangeListener<FocusModel<TreeItem<T>>> |
TreeCell.focusModelPropertyListener
Listens to the focusModel property on the TreeView.
|
private WeakChangeListener<FocusModel<T>> |
ListCell.weakFocusModelPropertyListener |
private WeakChangeListener<FocusModel<TreeItem<T>>> |
TreeCell.weakFocusModelPropertyListener |
Modifier and Type | Method and Description |
---|---|
FocusModel<T> |
ListView.getFocusModel()
Returns the currently installed
FocusModel . |
FocusModel<TreeItem<T>> |
TreeView.getFocusModel()
Returns the currently installed
FocusModel . |
Modifier and Type | Method and Description |
---|---|
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.
|
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 Type | Method and Description |
---|---|
B |
ListViewBuilder.focusModel(FocusModel<T> x)
Deprecated.
Set the value of the
focusModel property for the instance constructed by this builder. |
B |
TreeViewBuilder.focusModel(FocusModel<TreeItem<T>> x)
Deprecated.
Set the value of the
focusModel property for the instance constructed by this builder. |
void |
ListView.setFocusModel(FocusModel<T> value)
Sets the
FocusModel to be used in the ListView. |
void |
TreeView.setFocusModel(FocusModel<TreeItem<T>> value)
Sets the
FocusModel to be used in the TreeView. |