Uses of Class
javafx.scene.control.TreeTableView
Packages that use TreeTableView
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.
The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
-
Uses of TreeTableView in javafx.scene.control
Fields in javafx.scene.control with type parameters of type TreeTableViewModifier and TypeFieldDescriptionstatic Callback<TreeTableView,Boolean>
TreeTableView.DEFAULT_SORT_POLICY
The defaultsort policy
that this TreeTableView will use if no other policy is specified.Methods in javafx.scene.control that return TreeTableViewModifier and TypeMethodDescriptionTreeTableView.EditEvent.getSource()
Returns the TreeTableView upon which the edit took place.TreeTableView.ResizeFeatures.getTable()
Returns the TreeTableView upon which the resize operation is occurring.TreeTableCell.getTreeTableView()
Gets the value of the property treeTableView.TreeTableColumn.CellDataFeatures.getTreeTableView()
Returns theTableView
passed in to the constructor.TreeTableColumn.CellEditEvent.getTreeTableView()
Returns the TableView upon which this event occurred.TreeTableColumn.getTreeTableView()
Gets the value of the property treeTableView.TreeTablePosition.getTreeTableView()
The TreeTableView that this TreeTablePosition is related to.TreeTableRow.getTreeTableView()
Returns the TreeTableView associated with this TreeTableCell.TreeTableView.TreeTableViewSelectionModel.getTreeTableView()
Returns the TreeTableView instance that this selection model is installed in.Methods in javafx.scene.control that return types with arguments of type TreeTableViewModifier and TypeMethodDescriptionTreeTableView.getOnSort()
Gets the value of the property onSort.TreeTableView.getRowFactory()
Gets the value of the property rowFactory.TreeTableView.getSortPolicy()
Gets the value of the property sortPolicy.TreeTableView.onSortProperty()
Called when there's a request to sort the control.TreeTableView.rowFactoryProperty()
A function which produces a TreeTableRow.TreeTableView.sortPolicyProperty()
The sort policy specifies how sorting in this TreeTableView should be performed.TreeTableCell.treeTableViewProperty()
TheTreeTableView
associated with thisTreeTableCell
.TreeTableColumn.treeTableViewProperty()
The TreeTableView that this TreeTableColumn belongs to.TreeTableRow.treeTableViewProperty()
A TreeTableCell is explicitly linked to a singleTreeTableView
instance, which is represented by this property.Methods in javafx.scene.control with parameters of type TreeTableViewModifier and TypeMethodDescriptionvoid
TreeTableCell.updateTreeTableView(TreeTableView<S> tv)
Updates theTreeTableView
associated with thisTreeTableCell
.void
TreeTableRow.updateTreeTableView(TreeTableView<T> treeTable)
Updates the TreeTableView associated with this TreeTableCell.Method parameters in javafx.scene.control with type arguments of type TreeTableViewModifier and TypeMethodDescriptionvoid
TreeTableView.setOnSort(EventHandler<SortEvent<TreeTableView<S>>> value)
Sets the value of the property onSort.void
TreeTableView.setRowFactory(Callback<TreeTableView<S>,TreeTableRow<S>> value)
Sets the value of the property rowFactory.void
TreeTableView.setSortPolicy(Callback<TreeTableView<S>,Boolean> callback)
Sets the value of the property sortPolicy.Constructors in javafx.scene.control with parameters of type TreeTableViewModifierConstructorDescriptionCellDataFeatures(TreeTableView<S> treeTableView, TreeTableColumn<S,T> tableColumn, TreeItem<S> value)
Instantiates a CellDataFeatures instance with the given properties set as read-only values of this instance.CellEditEvent(TreeTableView<S> table, TreeTablePosition<S,T> pos, EventType<TreeTableColumn.CellEditEvent<S,T>> eventType, T newValue)
Creates a new event that can be subsequently fired to the relevant listeners.EditEvent(TreeTableView<S> source, EventType<? extends TreeTableView.EditEvent> eventType, TreeItem<S> treeItem, S oldValue, S newValue)
Creates a new EditEvent instance to represent an edit event.ResizeFeatures(TreeTableView<S> treeTable, TreeTableColumn<S,?> column, Double delta)
Creates an instance of this class, with the provided TreeTableView, TreeTableColumn and delta values being set and stored in this immutable instance.TreeTablePosition(TreeTableView<S> treeTableView, int row, TreeTableColumn<S,T> tableColumn)
Constructs a TreeTablePosition instance to represent the given row/column position in the given TreeTableView instance.TreeTableViewFocusModel(TreeTableView<S> treeTableView)
Creates a default TableViewFocusModel instance that will be used to manage focus of the provided TableView control.TreeTableViewSelectionModel(TreeTableView<S> treeTableView)
Builds a default TreeTableViewSelectionModel instance with the provided TreeTableView. -
Uses of TreeTableView in javafx.scene.control.skin
Constructors in javafx.scene.control.skin with parameters of type TreeTableViewModifierConstructorDescriptionTreeTableViewSkin(TreeTableView<T> control)
Creates a new TreeTableViewSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events.