Class TableRowSkin<T>
java.lang.Object
javafx.scene.control.SkinBase<TableRow<T>>
javafx.scene.control.skin.LabeledSkinBase<TableRow<T>>
javafx.scene.control.skin.CellSkinBase<TableRow<T>>
javafx.scene.control.skin.TableRowSkinBase<T,TableRow<T>,TableCell<T,?>>
javafx.scene.control.skin.TableRowSkin<T>
-
Property Summary
Properties declared in class javafx.scene.control.skin.TableRowSkinBase
graphic
Properties declared in class javafx.scene.control.skin.CellSkinBase
cellSize
-
Constructor Summary
ConstructorDescriptionTableRowSkin
(TableRow<T> control) Creates a new TableRowSkin instance, installing the necessary child nodes into the Controlchildren
list, as well as the necessary input mappings for handling key, mouse, etc events. -
Method Summary
Modifier and TypeMethodDescriptionCreates a new cell instance that is suitable for representing the given table column instance.protected TableColumn
<T, ?> getTableColumn
(TableCell<T, ?> cell) Returns theTableColumnBase
instance for the given cell instance.protected ObservableList
<TableColumn<T, ?>> Returns an unmodifiable list containing the currently visible leaf columns.protected void
updateCell
(TableCell<T, ?> cell, TableRow<T> row) A method to allow the given cell to be told that it is a member of the given row.Methods declared in class javafx.scene.control.skin.TableRowSkinBase
graphicProperty
Methods declared in class javafx.scene.control.skin.CellSkinBase
cellSizeProperty, getCellSize, getClassCssMetaData
Methods declared in class javafx.scene.control.skin.LabeledSkinBase
computeBaselineOffset, computeMinWidth, layoutChildren, layoutLabelInArea, layoutLabelInArea, updateChildren
Methods declared in class javafx.scene.control.SkinBase
computeMaxHeight, computeMaxWidth, computeMinHeight, computePrefHeight, computePrefWidth, consumeMouseEvents, dispose, executeAccessibleAction, getChildren, getCssMetaData, getNode, getSkinnable, layoutInArea, layoutInArea, layoutInArea, positionInArea, positionInArea, pseudoClassStateChanged, queryAccessibleAttribute, registerChangeListener, registerInvalidationListener, registerListChangeListener, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, unregisterChangeListeners, unregisterInvalidationListeners, unregisterListChangeListeners
-
Constructor Details
-
TableRowSkin
-
-
Method Details
-
createCell
Creates a new cell instance that is suitable for representing the given table column instance.- Specified by:
createCell
in classTableRowSkinBase<T,
TableRow<T>, TableCell<T, ?>> - Parameters:
tcb
- the table column- Returns:
- the created cell
-
getVisibleLeafColumns
Returns an unmodifiable list containing the currently visible leaf columns.- Specified by:
getVisibleLeafColumns
in classTableRowSkinBase<T,
TableRow<T>, TableCell<T, ?>> - Returns:
- the list of visible leaf columns
-
updateCell
A method to allow the given cell to be told that it is a member of the given row. How this is implemented is dependent on the actual cell implementation.- Specified by:
updateCell
in classTableRowSkinBase<T,
TableRow<T>, TableCell<T, ?>> - Parameters:
cell
- The cell for which we want to inform it of its owner row.row
- The row which will be set on the given cell.
-
getTableColumn
Returns theTableColumnBase
instance for the given cell instance.- Specified by:
getTableColumn
in classTableRowSkinBase<T,
TableRow<T>, TableCell<T, ?>> - Parameters:
cell
- The cell for which a TableColumn is desired.- Returns:
- the table column
-