01: package tide.editor.completions;
02:
03: /** An interface to access some common properties of the completion dialogs
04: */
05: public interface CompletionDialog {
06: /** selects the currently selected value and quit the dialog (when ENTER pressed)
07: */
08: public void selectAndQuit();
09:
10: /** cancel the dialog without selecting (when ESC pressed)
11: */
12: public void cancelDialog();
13:
14: }
|