1 11 package org.eclipse.jface.text.contentassist; 12 13 import org.eclipse.jface.text.IDocument; 14 15 16 27 public interface ICompletionProposalExtension { 28 29 39 void apply(IDocument document, char trigger, int offset); 40 41 49 boolean isValidFor(IDocument document, int offset); 50 51 57 char[] getTriggerCharacters(); 58 59 65 int getContextInformationPosition(); 66 } 67 | Popular Tags |