Package | Description |
---|---|
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 | Method and Description |
---|---|
protected TableView<T> |
TableRowBehavior.getCellContainer() |
protected TableView<S> |
TableCellBehavior.getCellContainer() |
Constructor and Description |
---|
TableViewBehavior(TableView<T> control)
*
Constructors *
*
|
Modifier and Type | Method and Description |
---|---|
protected ObjectProperty<Callback<TableView<T>,TableRow<T>>> |
TableViewSkin.rowFactoryProperty() |
Constructor and Description |
---|
TableViewSkin(TableView<T> tableView) |
Modifier and Type | Field and Description |
---|---|
static Callback<TableView,Boolean> |
TableView.DEFAULT_SORT_POLICY
The default
sort policy that this TableView
will use if no other policy is specified. |
Modifier and Type | Method and Description |
---|---|
TableView<S> |
TableViewBuilder.build()
Deprecated.
Make an instance of
TableView based on the properties set on this builder. |
TableView<S> |
TableView.ResizeFeatures.getTable()
Returns the TableView upon which the resize operation is occurring.
|
TableView<S> |
TableView.TableViewSelectionModel.getTableView()
Returns the TableView instance that this selection model is installed in.
|
TableView<T> |
TableRow.getTableView() |
TableView<S> |
TablePosition.getTableView()
The TableView that this TablePosition is related to.
|
TableView<S> |
TableColumn.getTableView() |
TableView<S> |
TableColumn.CellDataFeatures.getTableView()
Returns the
TableView passed in to the constructor. |
TableView<S> |
TableColumn.CellEditEvent.getTableView()
Returns the TableView upon which this event occurred.
|
TableView<S> |
TableCell.getTableView() |
Modifier and Type | Method and Description |
---|---|
EventHandler<SortEvent<TableView<S>>> |
TableView.getOnSort() |
Callback<TableView<S>,TableRow<S>> |
TableView.getRowFactory() |
Callback<TableView<S>,Boolean> |
TableView.getSortPolicy() |
ObjectProperty<EventHandler<SortEvent<TableView<S>>>> |
TableView.onSortProperty() |
ObjectProperty<Callback<TableView<S>,TableRow<S>>> |
TableView.rowFactoryProperty()
A function which produces a TableRow.
|
ObjectProperty<Callback<TableView<S>,Boolean>> |
TableView.sortPolicyProperty() |
ReadOnlyObjectProperty<TableView<T>> |
TableRow.tableViewProperty()
The TableView associated with this Cell.
|
ReadOnlyObjectProperty<TableView<S>> |
TableColumn.tableViewProperty() |
ReadOnlyObjectProperty<TableView<S>> |
TableCell.tableViewProperty()
The TableView associated with this TableCell.
|
Modifier and Type | Method and Description |
---|---|
void |
TableViewBuilder.applyTo(TableView<S> x)
Deprecated.
|
B |
TablePositionBuilder.tableView(TableView<S> x)
Deprecated.
Set the value of the
tableView property for the instance constructed by this builder. |
void |
TableCell.updateTableView(TableView tv)
Updates the TableView associated with this TableCell.
|
void |
TableRow.updateTableView(TableView<T> tv)
Updates the TableView associated with this TableCell.
|
Modifier and Type | Method and Description |
---|---|
B |
TableViewBuilder.rowFactory(Callback<TableView<S>,TableRow<S>> x)
Deprecated.
Set the value of the
rowFactory property for the instance constructed by this builder. |
void |
TableView.setOnSort(EventHandler<SortEvent<TableView<S>>> value) |
void |
TableView.setRowFactory(Callback<TableView<S>,TableRow<S>> value) |
void |
TableView.setSortPolicy(Callback<TableView<S>,Boolean> callback) |
Constructor and Description |
---|
CellDataFeatures(TableView<S> tableView,
TableColumn<S,T> tableColumn,
S value)
Instantiates a CellDataFeatures instance with the given properties
set as read-only values of this instance.
|
CellEditEvent(TableView<S> table,
TablePosition<S,T> pos,
EventType<TableColumn.CellEditEvent<S,T>> eventType,
T newValue)
Creates a new event that can be subsequently fired to the relevant listeners.
|
ResizeFeatures(TableView<S> table,
TableColumn<S,?> column,
Double delta)
Creates an instance of this class, with the provided TableView,
TableColumn and delta values being set and stored in this immutable
instance.
|
TablePosition(TableView<S> tableView,
int row,
TableColumn<S,T> tableColumn)
Constructs a TablePosition instance to represent the given row/column
position in the given TableView instance.
|
TableViewFocusModel(TableView<S> tableView)
Creates a default TableViewFocusModel instance that will be used to
manage focus of the provided TableView control.
|
TableViewSelectionModel(TableView<S> tableView)
Builds a default TableViewSelectionModel instance with the provided
TableView.
|
Copyright © 2020. All rights reserved.