Package com.google.gwt.user.client.ui
Interface FiresSuggestionEvents
-
- All Known Implementing Classes:
SuggestBox
@Deprecated public interface FiresSuggestionEvents
Deprecated.UseHasSelectionHandlers
instead.A widget that implements this interface fires the events defined by theSuggestionHandler
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addEventHandler(SuggestionHandler handler)
Deprecated.Add a selection handler insteadvoid
removeEventHandler(SuggestionHandler handler)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned by an add*Handler method instead
-
-
-
Method Detail
-
addEventHandler
@Deprecated void addEventHandler(SuggestionHandler handler)
Deprecated.Add a selection handler insteadAdds a handler interface to receive suggestion events.- Parameters:
handler
- the handler to add
-
removeEventHandler
@Deprecated void removeEventHandler(SuggestionHandler handler)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned by an add*Handler method insteadRemoves a previously added handler interface.- Parameters:
handler
- the handler to remove
-
-