Interface SelectionBasket


public interface SelectionBasket
An interface for handling the selection basket.
Since:
9.10.3
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Returns the selected components in the selection basket.
    void
    set​(Collection<Component> components)
    Sets the components to the selection basket.
  • Method Details

    • set

      void set(Collection<Component> components)
      Sets the components to the selection basket. Previous selection is discarded.
      Parameters:
      components - the components to select
      Since:
      9.10.3
    • get

      Set<Component> get()
      Returns the selected components in the selection basket. The returned set is a copy.
      Returns:
      the selected components
      Since:
      9.10.3