| java.lang.Object com.google.gwt.user.client.ui.SuggestOracle
All known Subclasses: com.google.gwt.user.client.ui.MultiWordSuggestOracle,
Inner Class :public interface Callback | |
Inner Class :public interface Suggestion | |
Method Summary | |
public boolean | isDisplayStringHTML() Should
Suggestion display strings be treated as HTML? If true, this
all suggestions' display strings will be interpreted as HTML, otherwise as
text. | abstract public void | requestSuggestions(Request request, Callback callback) Generate a
Response based on a specific
Request . |
isDisplayStringHTML | public boolean isDisplayStringHTML()(Code) | | Should
Suggestion display strings be treated as HTML? If true, this
all suggestions' display strings will be interpreted as HTML, otherwise as
text.
by default, returns false |
requestSuggestions | abstract public void requestSuggestions(Request request, Callback callback)(Code) | | Generate a
Response based on a specific
Request . After the
Response is created, it is passed into
Callback.onSuggestionsReady(com.google.gwt.user.client.ui.SuggestOracle.Requestcom.google.gwt.user.client.ui.SuggestOracle.Response) .
Parameters: request - the request Parameters: callback - the callback to use for the response |
|
|