Interface AutoCompListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
AutoCompComboBox
,AutoCompletingComboBox
,HistoryComboBox
,TagEditHelper.AbstractTagsDialog
,TagEditHelper.AddTagsDialog
,TagEditHelper.EditTagDialog
public interface AutoCompListener extends EventListener
The listener interface for receiving autoComp events. The class that is interested in processing an autoComp event implements this interface, and the object created with that class is registered with a component, using the component'saddAutoCompListener
method. When the autoComp event occurs, that object'sautoCompPerformed
method is invoked.- Since:
- 18221
- See Also:
AutoCompEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
autoCompBefore(AutoCompEvent e)
Invoked before an autocomplete.void
autoCompPerformed(AutoCompEvent e)
Invoked after an autocomplete happened.
-
-
-
Method Detail
-
autoCompBefore
void autoCompBefore(AutoCompEvent e)
Invoked before an autocomplete. You can use this to change the model.- Parameters:
e
- anAutoCompEvent
-
autoCompPerformed
void autoCompPerformed(AutoCompEvent e)
Invoked after an autocomplete happened.- Parameters:
e
- anAutoCompEvent
-
-