Package | Description |
---|---|
com.sun.javafx.scene.control | |
com.sun.javafx.scene.control.behavior | |
com.sun.javafx.scene.control.skin | |
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 |
---|---|
class |
SelectedCellsMap<T extends TablePositionBase>
Implementation code used by the TableSelectionModel implementations.
|
Modifier and Type | Field and Description |
---|---|
protected ListChangeListener<TablePositionBase> |
TableViewBehaviorBase.selectedCellsListener |
private SizeLimitedList<TablePositionBase> |
TableViewBehaviorBase.selectionHistory |
protected WeakListChangeListener<TablePositionBase> |
TableViewBehaviorBase.weakSelectedCellsListener |
Modifier and Type | Method and Description |
---|---|
protected TablePositionBase |
TableViewBehaviorBase.getAnchor()
Will return the current anchor position.
|
protected abstract TablePositionBase |
TableViewBehaviorBase.getFocusedCell()
Returns the focused cell from the focus model of the underlying control.
|
protected TablePositionBase<?> |
TreeTableRowBehavior.getFocusedCell() |
protected abstract TablePositionBase |
TableCellBehaviorBase.getFocusedCell() |
protected TablePositionBase<?> |
TableRowBehavior.getFocusedCell() |
protected TablePositionBase |
TreeTableViewBehavior.getFocusedCell()
Returns the focused cell from the focus model of the underlying control.
|
protected abstract TablePositionBase<?> |
TableRowBehaviorBase.getFocusedCell() |
protected TablePositionBase |
TreeTableCellBehavior.getFocusedCell() |
protected TablePositionBase |
TableViewBehavior.getFocusedCell()
Returns the focused cell from the focus model of the underlying control.
|
protected TablePositionBase |
TableCellBehavior.getFocusedCell() |
protected abstract TablePositionBase<TC> |
TableViewBehaviorBase.getTablePosition(int row,
TableColumnBase<T,?> tc)
Creates a TablePositionBase instance using the underlying controls
concrete implementation for the given row/column intersection.
|
protected TablePositionBase<TableColumn<T,?>> |
TableViewBehavior.getTablePosition(int row,
TableColumnBase<T,?> tc)
Creates a TablePositionBase instance using the underlying controls
concrete implementation for the given row/column intersection.
|
protected TablePositionBase<TreeTableColumn<T,?>> |
TreeTableViewBehavior.getTablePosition(int row,
TableColumnBase<TreeItem<T>,?> tc)
Creates a TablePositionBase instance using the underlying controls
concrete implementation for the given row/column intersection.
|
Modifier and Type | Method and Description |
---|---|
protected abstract ObservableList<? extends TablePositionBase> |
TableViewBehaviorBase.getSelectedCells()
Returns an observable list of all cells that are currently selected in
the selection model of the underlying control.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TableViewBehaviorBase.setAnchor(TablePositionBase tp)
Call to record the current anchor position
|
Modifier and Type | Method and Description |
---|---|
protected abstract TablePositionBase<? extends TC> |
TableViewSkinBase.getFocusedCell() |
Modifier and Type | Class and Description |
---|---|
class |
TablePosition<S,T>
This class is used to represent a single row/column/cell in a TableView.
|
class |
TreeTablePosition<S,T>
This class is used to represent a single row/column/cell in a TreeTableView.
|