Interface ScrollableTableDataModel

  • All Superinterfaces:
    TableDataModel

    @Deprecated
    public interface ScrollableTableDataModel
    extends TableDataModel
    Deprecated.
    This extension of TableDataModel is primarily for models that do not store their data locally. Models implementing this interface can provide more efficient calls to back-end systems, as the data model is notified of which rows are likely to be used in the near future.
    Since:
    1.0.0
    Author:
    Yiannis Paschalidis
    • Method Detail

      • setCurrentRows

        void setCurrentRows​(int start,
                            int end)
        Deprecated.
        This method will be called by the table to notify the TableDataModel of which rows are likely to be used in the near future.
        Parameters:
        start - the starting row index.
        end - the ending row index.