1 11 package org.eclipse.jface.text.contentassist; 12 13 import org.eclipse.jface.text.ITextViewer; 14 15 16 27 public interface IContentAssistProcessor { 28 29 38 ICompletionProposal[] computeCompletionProposals(ITextViewer viewer, int offset); 39 40 49 IContextInformation[] computeContextInformation(ITextViewer viewer, int offset); 50 51 58 char[] getCompletionProposalAutoActivationCharacters(); 59 60 67 char[] getContextInformationAutoActivationCharacters(); 68 69 75 String getErrorMessage(); 76 77 85 IContextInformationValidator getContextInformationValidator(); 86 } 87 | Popular Tags |