Interface SelectableTableModel

All Superinterfaces:
TableModel

public interface SelectableTableModel extends TableModel
  • Method Details

    • selectItems

      void selectItems(Collection<Object> items)
      Change the set of selected items to reflect the specified items
      Parameters:
      items - the collection of item to mark selected
    • toggleItem

      void toggleItem(Object item)
      Toggle the selection of a particular item.
      Parameters:
      item - the item to toggle
    • selectAll

      void selectAll()
      Select every value.
    • clearSelection

      void clearSelection()
      Deselect all values.
    • getSelectedValues

      @NotNull @NotNull Set<Object> getSelectedValues()
      Get the current selected set of items.
      Returns:
      the set of selected items
    • close

      default void close()
      Close and release any resources held by this object. The default implementation does nothing