Examples of ScenarioCompletionProcessor


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
Copyright © 2018 www.massapi.com. 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.