- java.lang.Object
- 
- javafx.scene.control.ResizeFeaturesBase<TreeItem<S>>
- 
- javafx.scene.control.TreeTableView.ResizeFeatures<S>
 
 
- 
- Enclosing class:
- TreeTableView<S>
 
 public static class TreeTableView.ResizeFeatures<S> extends ResizeFeaturesBase<TreeItem<S>> An immutable wrapper class for use in the TableViewcolumn resizefunctionality.- Since:
- JavaFX 8.0
 
- 
- 
Constructor SummaryConstructors Constructor Description ResizeFeatures(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 SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TreeTableColumn<S,?>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.TreeTableView<S>getTable()Returns the TreeTableView upon which the resize operation is occurring.- 
Methods inherited from class javafx.scene.control.ResizeFeaturesBasegetDelta
 
- 
 
- 
- 
- 
Constructor Detail- 
ResizeFeaturespublic ResizeFeatures(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.- 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 Detail- 
getColumnpublic TreeTableColumn<S,?> 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 class- ResizeFeaturesBase<TreeItem<S>>
- Returns:
- the column upon which the resize is occurring
 
 - 
getTablepublic TreeTableView<S> getTable() Returns the TreeTableView upon which the resize operation is occurring.- Returns:
- the TreeTableView upon which the resize operation is occurring
 
 
- 
 
-