Package info.cukes.editor.formatting

Examples of info.cukes.editor.formatting.CucumberFormatter


    @Override
    public IContentFormatter getContentFormatter(ISourceViewer sourceViewer) {
        MultiPassContentFormatter formatter = new MultiPassContentFormatter(IDocumentExtension3.DEFAULT_PARTITIONING,
            IDocument.DEFAULT_CONTENT_TYPE);

        CucumberFormatter cukeFormatter = new CucumberFormatter();
        formatter.setMasterStrategy(cukeFormatter);

        formatter.setSlaveStrategy(cukeFormatter, CucumberPartitionScanner.FEATURE);
        formatter.setSlaveStrategy(cukeFormatter, CucumberPartitionScanner.SCENARIO);
View Full Code Here

TOP

Related Classes of info.cukes.editor.formatting.CucumberFormatter

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.