scalafx.scene.control.TreeTableView
Creates a default TableViewFocusModel instance that will be used to manage focus of the provided TableView control.
Creates a default TableViewFocusModel instance that will be used to manage focus of the provided TableView control.
The tableView upon which this focus model operates.
Creates a new ScalaFX TreeTableViewFocusModel from its JavaFX counterpart.
Creates a new ScalaFX TreeTableViewFocusModel from its JavaFX counterpart.
JavaFX TreeTableViewFocusModel to be wrapped.
JavaFX TreeTableViewFocusModel to be wrapped.
JavaFX TreeTableViewFocusModel to be wrapped.
Verifies if a object is equals to this delegate.
Verifies if a object is equals to this delegate.
Object to be compared.
if the other object is equals to this delegate or not.
Causes the item at the given index to receive the focus.
Causes the item at the given index to receive the focus. This does not cause the current selection to change. Updates the focusedItem and focusedIndex properties such that focusedIndex = -1 unless 0 <= index < model size .
The index of the item to get focus.
Convenience method for setting focus on a particular row or cell using a scalafx.scene.control.TablePosition.
Convenience method for setting focus on a particular row or cell using a scalafx.scene.control.TablePosition.
The table position where focus should be set.
Causes the item at the given index to receive the focus.
Causes the item at the given index to receive the focus.
The row index of the item to give focus to.
The column of the item to give focus to. Can be null.
Causes the item at the given index to receive the focus.
Causes the item at the given index to receive the focus.
The row index of the item to give focus to.
The column of the item to give focus to. Can be null.
Attempts to move focus to the cell above the currently focused cell.
Attempts to move focus to the cell above the currently focused cell.
Attempts to move focus to the cell below the currently focused cell.
Attempts to move focus to the cell below the currently focused cell.
Attempts to move focus to the cell to the left of the currently focused cell.
Attempts to move focus to the cell to the left of the currently focused cell.
Attempts to give focus to the row after to the currently focused row.
Attempts to give focus to the row after to the currently focused row.
Attempts to give focus to the row previous to the currently focused row.
Attempts to give focus to the row previous to the currently focused row.
Attempts to move focus to the cell to the right of the the currently focused cell.
Attempts to move focus to the cell to the right of the the currently focused cell.
The position of the current item in the TableView which has the focus.
The index of the current item in the FocusModel which has the focus.
The index of the current item in the FocusModel which has the focus.
The current item in the FocusModel which has the focus.
The current item in the FocusModel which has the focus.
The delegate hashcode
Tests whether the row / cell at the given location currently has the focus within the TableView.
Tests whether the row / cell at the given location currently has the focus within the TableView.
The row index of the item to be checked.
The column index of the item to be checked.
Tests whether the row / cell at the given location currently has the focus within the UI control.
Tests whether the row / cell at the given location currently has the focus within the UI control.
The row index of the item to give focus to.
The column of the item to give focus to. Can be null.
true
whether the row / cell at the given location currently has the focus within the UI control.
Returns the original delegate's toString()
adding a [SFX]
prefix.
A FocusModel with additional functionality to support the requirements of a TableView control.
Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewFocusModel.html