Java 类com.intellij.lang.cacheBuilder.CacheBuilderRegistry 实例源码

项目:intellij-ce-playground    文件:IdIndex.java   
public static boolean isIndexable(FileType fileType) {
  return fileType instanceof LanguageFileType ||
         fileType instanceof CustomSyntaxTableFileType ||
         IdTableBuilding.isIdIndexerRegistered(fileType) ||
         CacheBuilderRegistry.getInstance().getCacheBuilder(fileType) != null;
}
项目:tools-idea    文件:IdIndex.java   
private static boolean isIndexable(FileType fileType) {
  return fileType instanceof LanguageFileType ||
         fileType instanceof CustomSyntaxTableFileType ||
         IdTableBuilding.isIdIndexerRegistered(fileType) ||
         CacheBuilderRegistry.getInstance().getCacheBuilder(fileType) != null;
}
项目:consulo    文件:IdIndex.java   
public static boolean isIndexable(FileType fileType) {
  return fileType instanceof LanguageFileType ||
         fileType instanceof CustomSyntaxTableFileType ||
         IdTableBuilding.isIdIndexerRegistered(fileType) ||
         CacheBuilderRegistry.getInstance().getCacheBuilder(fileType) != null;
}