Uses of Interface
com.intellij.openapi.fileTypes.FileType

Packages that use FileType
com.intellij.ide.util Provides interfaces for accessing additional user interface services and the generic tree view framework. 
com.intellij.j2ee Provides interfaces related to J2EE support in IDEA: J2EE run configurations, support for deploying to application servers, running and debugging J2EE modules and so on. 
com.intellij.openapi.compiler Provides interfaces for invoking the compiler, listening to compilation events and implementing custom compilers or compilation steps. 
com.intellij.openapi.diff Provides interfaces for invoking the IDEA's diff and merge user interface and for creating custom diff implementations. 
com.intellij.openapi.fileTypes Provides interfaces for registering and working with file types, and for implementing file type- dependent syntax highlighters. 
com.intellij.openapi.vcs Provides interfaces for integrating IDEA with version control systems. 
com.intellij.openapi.vfs Provides interfaces for the Virtual File System - IDEA's abstraction for a file system. 
com.intellij.psi Provides interfaces for working with the Program Source Interface (IDEA's internal representation of the program structure). 
com.intellij.psi.codeStyle Provides interfaces for working with code style settings, invoking the formatter and getting name suggestions dependent on code style settings. 
com.intellij.psi.search Provides interfaces for searching references to elements, searching for classes and symbols by name, searching for TODO items and defining scope of searches. 
 

Uses of FileType in com.intellij.ide.util
 

Methods in com.intellij.ide.util with parameters of type FileType
abstract  TreeFileChooser TreeClassChooserFactory.createFileChooser(java.lang.String title, PsiFile initialFile, FileType fileType, TreeFileChooser.PsiFileFilter filter)
           
 

Uses of FileType in com.intellij.j2ee
 

Methods in com.intellij.j2ee with parameters of type FileType
abstract  java.lang.String[] ExternalResourceManager.getResourceUrls(FileType fileType, boolean includeStandard)
           
 

Uses of FileType in com.intellij.openapi.compiler
 

Methods in com.intellij.openapi.compiler with parameters of type FileType
abstract  void CompilerManager.addCompilableFileType(FileType type)
          Registers the type as a compilable type so that Compile action will be enabled on files of this type.
 VirtualFile[] CompileScope.getFiles(FileType fileType, boolean inSourceOnly)
          Returns the list of files within the scope.
abstract  boolean CompilerManager.isCompilableFileType(FileType type)
          Checks if files of the specified type can be compiled by one of registered compilers.
abstract  void CompilerManager.removeCompilableFileType(FileType type)
          Unregisters the type as a compilable type so that Compile action will be disabled on files of this type.
 

Uses of FileType in com.intellij.openapi.diff
 

Methods in com.intellij.openapi.diff that return FileType
 FileType SimpleContent.getContentType()
           
 FileType FragmentContent.getContentType()
           
 FileType FileContent.getContentType()
           
 FileType DocumentContent.getContentType()
           
abstract  FileType DiffContent.getContentType()
           
 FileType BinaryContent.getContentType()
           
static FileType DiffContentUtil.getContentType(VirtualFile file)
           
 

Methods in com.intellij.openapi.diff with parameters of type FileType
static SimpleContent SimpleContent.fromBytes(byte[] bytes, java.lang.String charset, FileType fileType)
           
static DiffContent SimpleContent.fromIoFile(java.io.File file, java.lang.String charset, FileType fileType)
           
static boolean DiffContentUtil.isTextType(FileType fileType)
           
 

Constructors in com.intellij.openapi.diff with parameters of type FileType
BinaryContent(byte[] bytes, java.lang.String charset, FileType fileType)
           
DocumentContent(Document document, FileType type)
           
DocumentContent(Project project, Document document, FileType type)
           
FragmentContent(DiffContent original, TextRange range, Project project, FileType type)
           
SimpleContent(java.lang.String text, FileType type)
           
 

Uses of FileType in com.intellij.openapi.fileTypes
 

Classes in com.intellij.openapi.fileTypes that implement FileType
 class LanguageFileType
          Kind of file types capable to provide Language.
 class UserBinaryFileType
           
 class UserFileType<T extends UserFileType>
           
 

Fields in com.intellij.openapi.fileTypes declared as FileType
static FileType StdFileTypes.ARCHIVE
           
static FileType StdFileTypes.CLASS
           
static FileType[] FileType.EMPTY_ARRAY
           
static FileType StdFileTypes.GUI_DESIGNER_FORM
           
static FileType StdFileTypes.IDEA_MODULE
           
static FileType StdFileTypes.IDEA_PROJECT
           
static FileType StdFileTypes.IDEA_WORKSPACE
           
static FileType StdFileTypes.PLAIN_TEXT
           
static FileType StdFileTypes.UNKNOWN
           
 

Methods in com.intellij.openapi.fileTypes that return FileType
abstract  FileType FileTypeManager.getFileTypeByExtension(java.lang.String extension)
          Returns the file type for the specified extension.
abstract  FileType FileTypeManager.getFileTypeByFile(VirtualFile file)
          Returns the file type for the specified file.
abstract  FileType FileTypeManager.getFileTypeByFileName(java.lang.String fileName)
          Returns the file type for the specified file name.
abstract  FileType FileTypeManager.getKnownFileTypeOrAssociate(VirtualFile file)
          If fileName is already associated with any known file type returns it.
abstract  FileType[] FileTypeManager.getRegisteredFileTypes()
          Returns the list of all registered file types.
 

Methods in com.intellij.openapi.fileTypes with parameters of type FileType
abstract  void FileTypeManager.associateExtension(FileType type, java.lang.String extension)
          Adds an extension to the list of extensions associated with a file type.
abstract  java.lang.String[] FileTypeManager.getAssociatedExtensions(FileType type)
          Returns the list of extensions associated with the specified file type.
abstract  void FileTypeManager.registerFileType(FileType type, java.lang.String[] defaultAssociatedExtensions)
          Registers a file type.
abstract  void FileTypeManager.removeAssociatedExtension(FileType type, java.lang.String extension)
          Removes an extension from the list of extensions associated with a file type.
 

Uses of FileType in com.intellij.openapi.vcs
 

Methods in com.intellij.openapi.vcs that return FileType
 FileType FilePath.getFileType()
           
 

Uses of FileType in com.intellij.openapi.vfs
 

Methods in com.intellij.openapi.vfs that return FileType
 FileType VirtualFile.getFileType()
           
 

Uses of FileType in com.intellij.psi
 

Methods in com.intellij.psi that return FileType
 FileType PsiFile.getFileType()
          Returns the file type for the file.
 

Uses of FileType in com.intellij.psi.codeStyle
 

Methods in com.intellij.psi.codeStyle with parameters of type FileType
abstract  java.lang.String CodeStyleManager.fillIndent(Indent indent, FileType fileType)
          Deprecated.  
 int CodeStyleSettings.getContinuationIndentSize(FileType fileType)
           
abstract  Indent CodeStyleManager.getIndent(java.lang.String text, FileType fileType)
          Deprecated.  
 CodeStyleSettings.IndentOptions CodeStyleSettings.getIndentOptions(FileType fileType)
           
 int CodeStyleSettings.getIndentSize(FileType fileType)
           
 boolean CodeStyleSettings.getLabelIndentAbsolute(FileType fileType)
           
 int CodeStyleSettings.getLabelIndentSize(FileType fileType)
           
 int CodeStyleSettings.getTabSize(FileType fileType)
           
 boolean CodeStyleSettings.isSmartTabs(FileType fileType)
           
 boolean CodeStyleSettings.useTabCharacter(FileType fileType)
           
 

Uses of FileType in com.intellij.psi.search
 

Methods in com.intellij.psi.search with parameters of type FileType
static GlobalSearchScope GlobalSearchScope.getScopeRestrictedByFileTypes(GlobalSearchScope scope, FileType... fileTypes)