MultiWordSuggestOracle.MultiWordSuggestion
Replacement strings are useful when the display form of a suggestion differs from the input format for the data. For example, suppose that a company has a webpage with a form which requires the user to enter the e-mail address of an employee. Since users are likely to know the name of the employee, a SuggestBox is used to provide name suggestions as the user types. When the user types the letter f, a suggestion with the display string foo bar appears. When the user chooses this suggestion, the replacement string, foobar@company.com, is entered into the SuggestBox's text box.
This is an example where the input data format for the suggestion is not
as user-friendly as the display format. In the event that the display
of a suggestion exactly matches the input data format, the
Suggestion
interface would be implemented in such a way
that the display string and replacement string would be identical.
Suggestion
interface and define a getter method that has
a return value of the DTO's type. Define a class that implements this
subinterface and use it to encapsulate each suggestion.
To access a suggestion's DTO when the suggestion is selected, add a
SuggestionHandler to the SuggestBox (see SuggestBox's documentation
for more information). In the
SuggestionHandler.onSuggestionSelected(SuggestionEvent event)
method, obtain the selected Suggestion
object from the
SuggestionEvent object, and downcast the Suggestion
object to the subinterface. Then, acces the DTO using the DTO getter method
that was defined on the subinterface.
getDisplayString() | Gets the display string associated with this suggestion. |
getReplacementString() | Gets the replacement string associated with this suggestion. |