java.lang.Object
javafx.scene.control.ResizeFeaturesBase<TreeItem<S>>
javafx.scene.control.TreeTableView.ResizeFeatures<S>
- Enclosing class:
 TreeTableView<S>
An immutable wrapper class for use in the TableView
 
column resize functionality.- Since:
 - JavaFX 8.0
 
- 
Constructor Summary
ConstructorsConstructorDescriptionResizeFeatures(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. - 
Method Summary
Modifier and TypeMethodDescriptionTreeTableColumn<S,?> Returns the column upon which the resize is occurring, or null if this ResizeFeatures instance was created as a result of a TreeTableView resize operation.getTable()Returns the TreeTableView upon which the resize operation is occurring.Methods declared in class javafx.scene.control.ResizeFeaturesBase
getDelta 
- 
Constructor Details
- 
ResizeFeatures
Creates an instance of this class, with the provided TreeTableView, TreeTableColumn and delta values being set and stored in this immutable instance.- Parameters:
 treeTable- The TreeTableView upon which the resize operation is occurring.column- The column upon which the resize is occurring, or null if this ResizeFeatures instance is being created as a result of a TreeTableView resize operation.delta- The amount of horizontal space added or removed in the resize operation.
 
 - 
 - 
Method Details
- 
getColumn
Returns the column upon which the resize is occurring, or null if this ResizeFeatures instance was created as a result of a TreeTableView resize operation.- Overrides:
 getColumnin classResizeFeaturesBase<TreeItem<S>>- Returns:
 - the column upon which the resize is occurring
 
 - 
getTable
Returns the TreeTableView upon which the resize operation is occurring.- Returns:
 - the TreeTableView upon which the resize operation is occurring
 
 
 -