Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

FAQ How do I add Content Assist to my language editor?

In FAQ How do I write an editor for my own language? we describe how Content Assist is installed through our configuration class, as follows:

  class Configuration extends SourceViewerConfiguration {
     ...
     public IContentAssistant getContentAssistant(ISourceViewer sourceViewer) {
        ContentAssistant ca = new ContentAssistant();
        IContentAssistProcessor cap = new CompletionProcessor();
        ca.setContentAssistProcessor(cap, IDocument.DEFAULT_CONTENT_TYPE);
        ca.setInformationControlCreator(getInformationControlCreator(sourceViewer));
        return ca;
     }
     ...
  }

A completion processor takes the current insertion point in the editor and figures out a list of continuation proposals for the user to choose from. Our completion processor looks something like this:

   class CompletionProcessor implements IContentAssistProcessor { 
      private final IContextInformation[] NO_CONTEXTS = { };
      private final char[] PROPOSAL_ACTIVATION_CHARS = { 's','f','p','n','m', };
      private ICompletionProposal[] NO_COMPLETIONS = { };

      public ICompletionProposal[] computeCompletionProposals(ITextViewer viewer, int offset) {
         try {
            IDocument document = viewer.getDocument();
            ArrayList result = new ArrayList();
            String prefix = lastWord(document, offset);
            String indent = lastIndent(document, offset);
            EscriptModel model = EscriptModel.getModel(document, null);
            model.getContentProposals(prefix, indent, offset, result);
            return (ICompletionProposal[]) result.toArray(new ICompletionProposal[result.size()]);
         } catch (Exception e) {
            // ... log the exception ...
            return NO_COMPLETIONS;
         }
      }
      private String lastWord(IDocument doc, int offset) {
         try {
            for (int n = offset-1; n >= 0; n--) {
              char c = doc.getChar(n);
              if (!Character.isJavaIdentifierPart(c))
                return doc.get(n + 1, offset-n-1);
            }
         } catch (BadLocationException e) {
            // ... log the exception ...
         }
         return "";
      }
      private String lastIndent(IDocument doc, int offset) {
         try {
            int start = offset-1; 
            while (start >= 0 && doc.getChar(start)!= '\n') start--;
            int end = start;
            while (end < offset && Character.isSpaceChar(doc.getChar(end))) end++;
            return doc.get(start+1, end-start-1);
         } catch (BadLocationException e) {
            e.printStackTrace();
         }
         return "";
      }
      public IContextInformation[] computeContextInformation(ITextViewer viewer, int offset) { 
         return NO_CONTEXTS;
      }
      char[] getCompletionProposalAutoActivationCharacters() {
         return PROPOSAL_ACTIVATION_CHARS;
      }
      // ... remaining methods are optional ...
   }

Basically, Content Assist completion has three steps. First, we have to figure out what string has already been started by the user (see lastWord). Second, we have to find appropriate completions. Third, we have to return strings so that when they are inserted, they lay out acceptably (see the use of lastIndent).

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top