Interface SuggestionPopupItemListener

    • Method Detail

      • itemInserted

        default void itemInserted​(SuggestionPopup suggestionPopup,
                                  int index)
        Called when an item is inserted into the suggestion popup's data list.
        Parameters:
        suggestionPopup - The source of this event.
        index - The location where the item was inserted.
      • itemsRemoved

        default void itemsRemoved​(SuggestionPopup suggestionPopup,
                                  int index,
                                  int count)
        Called when items are removed from the suggestion popup's data list.
        Parameters:
        suggestionPopup - The source of this event.
        index - The starting index where items were removed.
        count - The number of items that were removed.
      • itemUpdated

        default void itemUpdated​(SuggestionPopup suggestionPopup,
                                 int index)
        Called when an item is updated within a suggestion popup's data list.
        Parameters:
        suggestionPopup - The source of this event.
        index - Which item was updated.
      • itemsCleared

        default void itemsCleared​(SuggestionPopup suggestionPopup)
        Called when a list button's list data has been cleared.
        Parameters:
        suggestionPopup - The source of this event.
      • itemsSorted

        default void itemsSorted​(SuggestionPopup suggestionPopup)
        Called when a list button's list data is sorted.
        Parameters:
        suggestionPopup - The source of this event.