Package com.intellij.openapi.fileTypes

Examples of com.intellij.openapi.fileTypes.ExactFileNameMatcher


import org.jetbrains.annotations.NotNull;

public class LombokConfigFileTypeFactory extends FileTypeFactory {
  @Override
  public void createFileTypes(@NotNull FileTypeConsumer fileTypeConsumer) {
    fileTypeConsumer.consume(LombokConfigFileType.INSTANCE, new ExactFileNameMatcher("lombok.config"));
  }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.fileTypes.ExactFileNameMatcher

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.