Package org.fxmisc.flowless


package org.fxmisc.flowless
  • Class
    Description
    Cell<T, N extends javafx.scene.Node>
    Provides efficient memory usage by wrapping a Node within this object and reusing it when Cell.isReusable() is true.
    ScaledVirtualized<V extends javafx.scene.Node & Virtualized>
    Acts as an intermediate class between VirtualizedScrollPane and its Virtualized content in that it scales the content without also scaling the ScrollPane's scroll bars.
    VirtualFlow<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 its Navigator.
    Determines how the cells in the viewport should be laid out and where any extra unused space should exist if there are not enough cells to completely fill up the viewport
    VirtualFlowHit<C extends Cell<?,?>>
    Stores the result of a VirtualFlow.hit(double, double).
    Specifies an object that does not have scroll bars by default but which can have scroll bars added to it by wrapping it in a VirtualizedScrollPane.
    VirtualizedScrollPane<V extends javafx.scene.layout.Region & Virtualized>