1 11 package org.eclipse.jface.text.contentassist; 12 13 import org.eclipse.jface.text.IDocument; 14 import org.eclipse.jface.text.IInformationControlCreator; 15 16 17 27 public interface ICompletionProposalExtension3 { 28 33 IInformationControlCreator getInformationControlCreator(); 34 35 51 CharSequence getPrefixCompletionText(IDocument document, int completionOffset); 52 53 66 int getPrefixCompletionStart(IDocument document, int completionOffset); 67 68 } 69 | Popular Tags |