Uses of Interface
org.fxmisc.flowless.Cell
-
Uses of Cell in org.fxmisc.flowless
Classes in org.fxmisc.flowless with type parameters of type CellModifier and TypeClassDescriptionclassVirtualFlow<T, C extends Cell<T,?>> A VirtualFlow is a memory-efficient viewport that only renders enough of its content to completely fill up the viewport through itsNavigator.classVirtualFlowHit<C extends Cell<?,?>> Stores the result of aVirtualFlow.hit(double, double).Methods in org.fxmisc.flowless with type parameters of type CellModifier and TypeMethodDescriptionstatic <T, C extends Cell<T,?>>
VirtualFlow<T, C> VirtualFlow.createHorizontal(javafx.collections.ObservableList<T> items, Function<? super T, ? extends C> cellFactory) Creates a viewport that lays out content horizontally from left to rightstatic <T, C extends Cell<T,?>>
VirtualFlow<T, C> VirtualFlow.createHorizontal(javafx.collections.ObservableList<T> items, Function<? super T, ? extends C> cellFactory, VirtualFlow.Gravity gravity) Creates a viewport that lays out content horizontallystatic <T, C extends Cell<T,?>>
VirtualFlow<T, C> VirtualFlow.createVertical(javafx.collections.ObservableList<T> items, Function<? super T, ? extends C> cellFactory) Creates a viewport that lays out content vertically from top to bottomstatic <T, C extends Cell<T,?>>
VirtualFlow<T, C> VirtualFlow.createVertical(javafx.collections.ObservableList<T> items, Function<? super T, ? extends C> cellFactory, VirtualFlow.Gravity gravity) Creates a viewport that lays out content vertically from top to bottomMethods in org.fxmisc.flowless that return CellModifier and TypeMethodDescriptionCell.afterDispose(Runnable action) Cell.afterReset(Runnable action) Cell.afterUpdateIndex(IntConsumer action) Cell.afterUpdateItem(Consumer<? super T> action) Cell.beforeDispose(Runnable action) Cell.beforeReset(Runnable action) Cell.beforeUpdateIndex(IntConsumer action) Cell.beforeUpdateItem(Consumer<? super T> action) static <T, N extends javafx.scene.Node>
Cell<T, N> Cell.wrapNode(N node)