Package com.google.gwt.user.client.ui
Interface SuggestionHandler
-
- All Superinterfaces:
java.util.EventListener
@Deprecated public interface SuggestionHandler extends java.util.EventListenerDeprecated.useSelectionHandlerinsteadEvent handler interface forSuggestionEvent.- See Also:
SuggestBox
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidonSuggestionSelected(SuggestionEvent event)Deprecated.Fired when a suggestion is selected.
-
-
-
Method Detail
-
onSuggestionSelected
void onSuggestionSelected(SuggestionEvent event)
Deprecated.Fired when a suggestion is selected. Users can select a suggestion from the SuggestBox by clicking on one of the suggestions, or by pressing the ENTER key to select the suggestion that is currently highlighted.- Parameters:
event- the object containing information about this event deprecated useSelectionHandler.onSelection(com.google.gwt.event.logical.shared.SelectionEvent)instead
-
-