Package docking.widgets.autocomplete
Interface AutocompletionListener<T>
-
- Type Parameters:
T
- the type of suggestions presented by the autocompleter.
public interface AutocompletionListener<T>
A listener for autocompletion events.- See Also:
TextFieldAutocompleter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
completionActivated(AutocompletionEvent<T> e)
The user has activated a suggested item.
-
-
-
Method Detail
-
completionActivated
void completionActivated(AutocompletionEvent<T> e)
The user has activated a suggested item. This means the user has explicitly activate the item, i.e., pressed enter on or clicked the item.- Parameters:
e
- the event describing the activation
-
-