Package com.googlecode.netburstjbehaveidea

Source Code of com.googlecode.netburstjbehaveidea.StoryLanguage

package com.googlecode.netburstjbehaveidea;

import com.intellij.lang.Language;
import com.intellij.openapi.fileTypes.SingleLazyInstanceSyntaxHighlighterFactory;
import com.intellij.openapi.fileTypes.SyntaxHighlighter;
import com.intellij.openapi.fileTypes.SyntaxHighlighterFactory;
import org.jetbrains.annotations.NotNull;

public class StoryLanguage extends Language {

    public final static StoryLanguage INSTANCE = new StoryLanguage();

    private StoryLanguage() {
        super("STORY");

        //somehow lang.syntaxHighlighterFactory extension won't work for me
        SyntaxHighlighterFactory.LANGUAGE_FACTORY.addExplicitExtension(this, new SingleLazyInstanceSyntaxHighlighterFactory() {

            @NotNull
            protected SyntaxHighlighter createHighlighter() {
                return new StorySyntaxHighlighter();
            }

        });
    }

}
TOP

Related Classes of com.googlecode.netburstjbehaveidea.StoryLanguage

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.