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:
- 
Method SummaryModifier and TypeMethodDescriptionvoidThe user has activated a suggested item.default voidThe user has selected a suggested item.
- 
Method Details- 
completionSelectedThe user has selected a suggested item.This means the user has highlighted an item, but has not activated that item. - Parameters:
- ev- the event describing the selection
 
- 
completionActivatedThe 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
 
 
-