Example usage for com.intellij.openapi.fileTypes TemplateLanguageFileType interface-usage

List of usage examples for com.intellij.openapi.fileTypes TemplateLanguageFileType interface-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.fileTypes TemplateLanguageFileType interface-usage.

Usage

From source file com.google.bamboo.soy.file.SoyFileType.java

public class SoyFileType extends LanguageFileType implements TemplateLanguageFileType {
    public static final SoyFileType INSTANCE = new SoyFileType();

    private SoyFileType() {
        super(SoyLanguage.INSTANCE);
    }

From source file com.intellij.velocity.psi.files.VtlFileType.java

/**
 * @author Alexey Chmutov
 */
public class VtlFileType extends LanguageFileType implements TemplateLanguageFileType {
    public static final VtlFileType INSTANCE = new VtlFileType();

From source file com.netease.regular.lang.file.RegularFileType.java

public class RegularFileType extends LanguageFileType implements TemplateLanguageFileType {
    public static final LanguageFileType INSTANCE = new RegularFileType();

    protected RegularFileType() {
        super(RegularLanguage.INSTANCE);
    }

From source file consulo.javaee.jsp.JspFileType.java

/**
 * @author VISTALL
 * @since 07.11.13.
 */
public class JspFileType extends XmlLikeFileType implements TemplateLanguageFileType {
    public static final JspFileType INSTANCE = new JspFileType();

From source file io.github.jhsx.jet.lang.file.JetFileType.java

public class JetFileType extends LanguageFileType implements TemplateLanguageFileType {
    public static final LanguageFileType INSTANCE = new JetFileType();

    protected JetFileType() {
        super(JetLanguage.INSTANCE);
    }

From source file org.mustbe.consulo.csharp.lang.CSharpFileType.java

/**
 * @author VISTALL
 * @since 22.11.13.
 */
public class CSharpFileType extends LanguageFileType implements TemplateLanguageFileType {
    public static final String EXTENSION = "cs";