Class TableViewSelectionListener.Adapter

    • Constructor Detail

      • Adapter

        public Adapter()
        Deprecated.
    • Method Detail

      • selectedRangeAdded

        public void selectedRangeAdded​(TableView tableView,
                                       int rangeStart,
                                       int rangeEnd)
        Deprecated.
        Description copied from interface: TableViewSelectionListener
        Called when a range has been added to a table view's selection.
        Specified by:
        selectedRangeAdded in interface TableViewSelectionListener
        Parameters:
        tableView - The source of the event.
        rangeStart - The start index of the range that was added, inclusive.
        rangeEnd - The end index of the range that was added, inclusive.
      • selectedRangeRemoved

        public void selectedRangeRemoved​(TableView tableView,
                                         int rangeStart,
                                         int rangeEnd)
        Deprecated.
        Description copied from interface: TableViewSelectionListener
        Called when a range has been removed from a table view's selection.
        Specified by:
        selectedRangeRemoved in interface TableViewSelectionListener
        Parameters:
        tableView - The source of the event.
        rangeStart - The start index of the range that was removed, inclusive.
        rangeEnd - The end index of the range that was removed, inclusive.
      • selectedRangesChanged

        public void selectedRangesChanged​(TableView tableView,
                                          Sequence<Span> previousSelectedRanges)
        Deprecated.
        Description copied from interface: TableViewSelectionListener
        Called when a table view's selection state has been reset.
        Specified by:
        selectedRangesChanged in interface TableViewSelectionListener
        Parameters:
        tableView - The source of the event.
        previousSelectedRanges - If the selection changed directly, contains the ranges that were previously selected. If the selection changed indirectly as a result of a model change, contains the current selection. Otherwise, contains null.
      • selectedRowChanged

        public void selectedRowChanged​(TableView tableView,
                                       java.lang.Object previousSelectedRow)
        Deprecated.
        Description copied from interface: TableViewSelectionListener
        Called when a table view's selected item has changed.
        Specified by:
        selectedRowChanged in interface TableViewSelectionListener
        Parameters:
        tableView - The source of the event.
        previousSelectedRow - The row that was previously selected.