public interface Completer
| Modifier and Type | Method and Description | 
|---|---|
| int | complete(java.lang.String buffer,
        int cursor,
        java.util.List<java.lang.CharSequence> candidates)Populates candidates with a list of possible completions for the buffer. | 
int complete(java.lang.String buffer,
             int cursor,
             java.util.List<java.lang.CharSequence> candidates)
List before returning.buffer - The buffercursor - The current position of the cursor in the buffercandidates - The List of candidates to populateCopyright © 2018. All Rights Reserved.