Package org.cfeclipse.cfml.templates.template

Examples of org.cfeclipse.cfml.templates.template.TextualCompletionProcessor


  public IContentAssistant getContentAssistant(ISourceViewer sourceViewer) {
    ContentAssistant assistant= new ContentAssistant();
    assistant.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer));

    IContentAssistProcessor processor= new TextualCompletionProcessor();
    assistant.setContentAssistProcessor(processor, IDocument.DEFAULT_CONTENT_TYPE);
    assistant.setContentAssistProcessor(processor, XMLPartitionScanner.XML_TAG);

    assistant.setContextInformationPopupOrientation(IContentAssistant.CONTEXT_INFO_ABOVE);
    assistant.setInformationControlCreator(getInformationControlCreator(sourceViewer));
View Full Code Here

TOP

Related Classes of org.cfeclipse.cfml.templates.template.TextualCompletionProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.