01: package net.sourceforge.squirrel_sql.fw.completion;
02:
03: public interface ICompletorModel {
04: /**
05: *
06: * @param textTillCarret Is only the text till carret if editor and filter are the same.
07: * If there is an extra filter text field the complete text in this text field is passed.
08: *
09: * @return
10: */
11: public CompletionCandidates getCompletionCandidates(
12: String textTillCarret);
13: }
|