Interface SearchedItemPanelDestinationUI

All Known Implementing Classes:
RecentlyViewedWindow, SimilarItemsContainer

public interface SearchedItemPanelDestinationUI
The SearchedItemPanelDestinationUI interface represents a UI component that can serve as a destination for displaying searched item panels. It allows for Node and not just SearchedItemPanel to allow for a subset of the information to be displayed through this interface.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setContent(List<Node> panels)
    Sets the content of the SearchedItemPanelDestinationUI with the given list of searched item panels.
  • Method Details

    • setContent

      void setContent(List<Node> panels)
      Sets the content of the SearchedItemPanelDestinationUI with the given list of searched item panels.
      Parameters:
      panels - The list of searched item panels to display in the SearchedItemPanelDestinationUI.
      Preconditions:
      panels is not null.
      Postconditions:
      The content of the SearchedItemPanelDestinationUI is updated with the given list of searched item panels.