Uses of Class
javafx.scene.control.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
Modifier and TypeMethodDescriptionfinal TreeTableRow
<S> TreeTableCell.getTableRow()
Gets the value of the propertytableRow
.final TreeTableRow
<S> TreeTableCell.getTreeTableRow()
Deprecated.Modifier 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.Modifier and TypeMethodDescriptionfinal void
TreeTableCell.updateTableRow
(TreeTableRow<S> row) Updates theTreeTableRow
associated with thisTreeTableCell
.final void
TreeTableCell.updateTreeTableRow
(TreeTableRow<S> row) Deprecated.Modifier 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
Modifier 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.ModifierConstructorDescriptionTreeTableRowSkin
(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.