Package com.google.gwt.user.client.ui
Class SuggestionEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.google.gwt.user.client.ui.SuggestionEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class SuggestionEvent extends java.util.EventObjectEvent object containing information about the selection of aSuggestOracle.Suggestiondisplayed by aSuggestBox.
-
-
Constructor Summary
Constructors Constructor Description SuggestionEvent(SuggestBox sender, SuggestOracle.Suggestion selectedSuggestion)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SuggestOracle.SuggestiongetSelectedSuggestion()Gets theSuggestionobject for the suggestion chosen by the user.java.lang.StringtoString()Returns the string representation of this event object.
-
-
-
Constructor Detail
-
SuggestionEvent
public SuggestionEvent(SuggestBox sender, SuggestOracle.Suggestion selectedSuggestion)
-
-
Method Detail
-
getSelectedSuggestion
public SuggestOracle.Suggestion getSelectedSuggestion()
Gets theSuggestionobject for the suggestion chosen by the user.- Returns:
- the
Suggestionobject for the selected suggestion
-
toString
public java.lang.String toString()
Returns the string representation of this event object. The string contains the string representation of the SuggestBox from which the event originated (the source), and the string representation of the Suggestion that was selected.- Overrides:
toStringin classjava.util.EventObject- Returns:
- the string representation of this event object containing the source SuggestBox and the selected Suggestion
-
-