Uses of Class
javafx.scene.control.TreeTableRow
Packages that use TreeTableRow
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 TreeTableRow in javafx.scene.control
Methods in javafx.scene.control that return TreeTableRowModifier and TypeMethodDescriptionfinal TreeTableRow
<S> TreeTableCell.getTableRow()
Gets the value of the propertytableRow
.final TreeTableRow
<S> TreeTableCell.getTreeTableRow()
Deprecated.Methods in javafx.scene.control that return types with arguments of type TreeTableRowModifier and TypeMethodDescriptionfinal Callback
<TreeTableView<S>, TreeTableRow<S>> TreeTableView.getRowFactory()
Gets the value of therowFactory
property.final ObjectProperty
<Callback<TreeTableView<S>, TreeTableRow<S>>> TreeTableView.rowFactoryProperty()
A function which produces a TreeTableRow.final ReadOnlyObjectProperty
<TreeTableRow<S>> TreeTableCell.tableRowProperty()
TheTreeTableRow
that thisTreeTableCell
currently finds itself placed within.Methods in javafx.scene.control with parameters of type TreeTableRowModifier and TypeMethodDescriptionfinal void
TreeTableCell.updateTableRow
(TreeTableRow<S> row) Updates theTreeTableRow
associated with thisTreeTableCell
.final void
TreeTableCell.updateTreeTableRow
(TreeTableRow<S> row) Deprecated.Method parameters in javafx.scene.control with type arguments of type TreeTableRowModifier and TypeMethodDescriptionfinal void
TreeTableView.setRowFactory
(Callback<TreeTableView<S>, TreeTableRow<S>> value) Sets the value of therowFactory
property. -
Uses of TreeTableRow in javafx.scene.control.skin
Methods in javafx.scene.control.skin with parameters of type TreeTableRowModifier and TypeMethodDescriptionprotected void
TreeTableRowSkin.updateCell
(TreeTableCell<T, ?> cell, TreeTableRow<T> row) A method to allow the given cell to be told that it is a member of the given row.Constructors in javafx.scene.control.skin with parameters of type TreeTableRowModifierConstructorDescriptionTreeTableRowSkin
(TreeTableRow<T> control) Creates a new TreeTableRowSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events.
TreeTableCell.getTableRow()
instead.