Module com.iamsoft.util.ui
Package com.iamsoft.util.ui.javafx.table
Interface TableViewFindSupport.SearchableCell<I>
-
- All Superinterfaces:
javafx.beans.InvalidationListener
,TextWrapCell<I>
- All Known Implementing Classes:
FindLazyTableCell
,TableViewFindSupport.AbstractSearchableCell
,TableViewFindSupport.Cell
,TableViewFindSupport.ComboBoxCell
,TableViewFindSupport.TextFieldCell
- Enclosing class:
- TableViewFindSupport
public static interface TableViewFindSupport.SearchableCell<I> extends TextWrapCell<I>, javafx.beans.InvalidationListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
doUpdateItem(I pItem, boolean pEmpty)
AbstractCellFindSupport<javafx.scene.control.TableView<?>,I>
getCellFindSupport()
javafx.beans.property.ReadOnlyDoubleProperty
heightProperty()
default void
invalidated(javafx.beans.Observable pObservable)
Used to compute and set appropriate value for thefixedCellSize
property of the correspondingTableView
.-
Methods inherited from interface com.iamsoft.util.ui.javafx.table.TextWrapCell
adjustPrefHeight, getDisplayText, getLineWrap, getTextFlow, getTextWrapCellSupport, lineWrapProperty, updateCellText, updateItem, updateRowHeightIfNeeded
-
-
-
-
Method Detail
-
getCellFindSupport
AbstractCellFindSupport<javafx.scene.control.TableView<?>,I> getCellFindSupport()
-
heightProperty
javafx.beans.property.ReadOnlyDoubleProperty heightProperty()
-
doUpdateItem
default void doUpdateItem(I pItem, boolean pEmpty)
- Specified by:
doUpdateItem
in interfaceTextWrapCell<I>
-
invalidated
default void invalidated(javafx.beans.Observable pObservable)
Used to compute and set appropriate value for thefixedCellSize
property of the correspondingTableView
.- Specified by:
invalidated
in interfacejavafx.beans.InvalidationListener
-
-