Module com.iamsoft.util.ui
Package com.iamsoft.util.ui.javafx.table
Interface LazyCell<S,T,C extends javafx.scene.control.IndexedCell<T>,CS extends LazyCellSupport<S,T,C>>
- All Known Subinterfaces:
LazyTableCell<S,,T> LazyTreeTableCell<S,T>
- All Known Implementing Classes:
TableViewFindSupport.LazyCell,TreeTableViewFindSupport.LazyTreeCell
public interface LazyCell<S,T,C extends javafx.scene.control.IndexedCell<T>,CS extends LazyCellSupport<S,T,C>>
-
Method Summary
Modifier and TypeMethodDescriptioncreateLazyCellSupport(C pCell) default voidThis method can be invoked by lazy table cell support implementations to indicate a change in the loading state.
-
Method Details
-
getLazyCellSupport
CS getLazyCellSupport() -
createLazyCellSupport
-
onStateChange
default void onStateChange()This method can be invoked by lazy table cell support implementations to indicate a change in the loading state. I.e. loading started, loading done, loading failed. Subclasses can override this method if interest in these changes.
-