Package info.cukes.editor.completion

Examples of info.cukes.editor.completion.ScenarioCompletionProcessor


    @Override
    public IContentAssistant getContentAssistant(ISourceViewer sourceViewer) {

        ContentAssistant ca = new ContentAssistant();
        IContentAssistProcessor pr = new ScenarioCompletionProcessor(scenarioAnnotationSearch);
        ca.setContentAssistProcessor(pr, CucumberPartitionScanner.SCENARIO);
        ca.setContentAssistProcessor(pr, IDocument.DEFAULT_CONTENT_TYPE);
        ca.setInformationControlCreator(getInformationControlCreator(sourceViewer));
        return ca;
    }
View Full Code Here

TOP

Related Classes of info.cukes.editor.completion.ScenarioCompletionProcessor

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.