org.apache.pivot.wtk
Interface SuggestionPopupItemListener

All Known Implementing Classes:
SuggestionPopupItemListener.Adapter

public interface SuggestionPopupItemListener

Suggestion popup item listener interface.


Nested Class Summary
static class SuggestionPopupItemListener.Adapter
          Suggestion popup item listener adapter.
 
Method Summary
 void itemInserted(SuggestionPopup suggestionPopup, int index)
          Called when an item is inserted into a list button's list data.
 void itemsCleared(SuggestionPopup suggestionPopup)
          Called when a list button's list data has been cleared.
 void itemsRemoved(SuggestionPopup suggestionPopup, int index, int count)
          Called when items are removed from a list button's list data.
 void itemsSorted(SuggestionPopup suggestionPopup)
          Called when a list button's list data is sorted.
 void itemUpdated(SuggestionPopup suggestionPopup, int index)
          Called when an item is updated within a list button's list data.
 

Method Detail

itemInserted

void itemInserted(SuggestionPopup suggestionPopup,
                  int index)
Called when an item is inserted into a list button's list data.

Parameters:
suggestionPopup -
index -

itemsRemoved

void itemsRemoved(SuggestionPopup suggestionPopup,
                  int index,
                  int count)
Called when items are removed from a list button's list data.

Parameters:
suggestionPopup -
index -
count -

itemUpdated

void itemUpdated(SuggestionPopup suggestionPopup,
                 int index)
Called when an item is updated within a list button's list data.

Parameters:
suggestionPopup -
index -

itemsCleared

void itemsCleared(SuggestionPopup suggestionPopup)
Called when a list button's list data has been cleared.

Parameters:
suggestionPopup -

itemsSorted

void itemsSorted(SuggestionPopup suggestionPopup)
Called when a list button's list data is sorted.

Parameters:
suggestionPopup -