Top Description Fields Constructors Methods
javafx.scene.control.skin

public Class TableCellSkin<S, T>

extends TableCellSkinBase<S, T, TableCell<S, T>>
Class Inheritance
Type Parameters
<S>
The type of the UI control (e.g. the type of the 'row').
<T>
The type of the content in the cell, based on its TableColumn.
Imports
com.sun.javafx.scene.control.behavior.BehaviorBase, .TableCellBehavior, javafx.beans.property.ReadOnlyObjectProperty, javafx.scene.control.*

Default skin implementation for the TableCell control.
Since
9
See Also
TableCell

Field Summary

Modifier and TypeField and Description
private final BehaviorBase<TableCell<S, T>>
Inherited from javafx.scene.control.skin.TableCellSkinBase:
isDeferToParentForPrefWidth

Constructor Summary

AccessConstructor and Description
public
TableCellSkin(TableCell<S, T>
The control that this skin should be installed onto.
control
)

Creates a new TableCellSkin instance, installing the necessary child nodes into the Control children list, as well as the necessary input mappings for handling key, mouse, etc events.

Method Summary

Modifier and TypeMethod and Description
public void
dispose()

Overrides javafx.scene.control.skin.TableCellSkinBase.dispose.

Implements javafx.scene.control.Skin.dispose.

Called when a previously installed skin is about to be removed from its associated control.

public ReadOnlyObjectProperty<TableColumn<S, T>>
tableColumnProperty()

Implements abstract javafx.scene.control.skin.TableCellSkinBase.tableColumnProperty.

The TableColumnBase instance that is responsible for this Cell.

Inherited from javafx.scene.control.skin.TableCellSkinBase:
computePrefWidthgetTableColumnlayoutChildren

Field Detail

behaviorback to summary
private final BehaviorBase<TableCell<S, T>> behavior

Constructor Detail

TableCellSkinback to summary
public TableCellSkin(TableCell<S, T> control)

Creates a new TableCellSkin instance, installing the necessary child nodes into the Control children list, as well as the necessary input mappings for handling key, mouse, etc events.

Parameters
control:TableCell<S, T>

The control that this skin should be installed onto.

Method Detail

disposeback to summary
public void dispose()

Overrides javafx.scene.control.skin.TableCellSkinBase.dispose.

Implements javafx.scene.control.Skin.dispose.

Doc from javafx.scene.control.skin.TableCellSkinBase.dispose.

Called when a previously installed skin is about to be removed from its associated control. This allows the skin to do clean up, like removing listeners and bindings, and undo any changes to the control's properties. After this method completes, getSkinnable() and getNode() should return null.

Calling dispose() more than once has no effect.

Annotations
@Override
tableColumnPropertyback to summary
public ReadOnlyObjectProperty<TableColumn<S, T>> tableColumnProperty()

Implements abstract javafx.scene.control.skin.TableCellSkinBase.tableColumnProperty.

Doc from javafx.scene.control.skin.TableCellSkinBase.tableColumnProperty.

The TableColumnBase instance that is responsible for this Cell.

Returns:ReadOnlyObjectProperty<TableColumn<S, T>>

the TableColumnBase instance that is responsible for this Cell

Annotations
@Override