Example usage for com.intellij.openapi.fileTypes FileTypeConsumer EXTENSION_DELIMITER

List of usage examples for com.intellij.openapi.fileTypes FileTypeConsumer EXTENSION_DELIMITER

Introduction

In this page you can find the example usage for com.intellij.openapi.fileTypes FileTypeConsumer EXTENSION_DELIMITER.

Prototype

String EXTENSION_DELIMITER

To view the source code for com.intellij.openapi.fileTypes FileTypeConsumer EXTENSION_DELIMITER.

Click Source Link

Usage

From source file:org.jetbrains.plugins.scala.ScalaFileTypeFactory.java

License:Apache License

public void createFileTypes(final @NotNull FileTypeConsumer consumer) {
    consumer.consume(ScalaFileType.SCALA_FILE_TYPE, ScalaFileType.DEFAULT_EXTENSION
            + FileTypeConsumer.EXTENSION_DELIMITER + ScalaFileType.WORKSHEET_EXTENSION);
}