本文整理汇总了Java中com.intellij.openapi.fileTypes.StdFileTypes.PROPERTIES属性的典型用法代码示例。如果您正苦于以下问题:Java StdFileTypes.PROPERTIES属性的具体用法?Java StdFileTypes.PROPERTIES怎么用?Java StdFileTypes.PROPERTIES使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.intellij.openapi.fileTypes.StdFileTypes
的用法示例。
在下文中一共展示了StdFileTypes.PROPERTIES属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkHardcodedCharsetFileType
@NotNull
static Pair<Charset, String> checkHardcodedCharsetFileType(@NotNull VirtualFile virtualFile) {
FileType fileType = virtualFile.getFileType();
if (fileType.isBinary()) return Pair.create(null, "binary file");
// in lesser IDEs all special file types are plain text so check for that first
if (fileType == FileTypes.PLAIN_TEXT) return Pair.create(null, null);
if (fileType == StdFileTypes.GUI_DESIGNER_FORM) return Pair.create(CharsetToolkit.UTF8_CHARSET, "IDEA GUI Designer form");
if (fileType == StdFileTypes.IDEA_MODULE) return Pair.create(CharsetToolkit.UTF8_CHARSET, "IDEA module file");
if (fileType == StdFileTypes.IDEA_PROJECT) return Pair.create(CharsetToolkit.UTF8_CHARSET, "IDEA project file");
if (fileType == StdFileTypes.IDEA_WORKSPACE) return Pair.create(CharsetToolkit.UTF8_CHARSET, "IDEA workspace file");
if (fileType == StdFileTypes.PROPERTIES) return Pair.create(virtualFile.getCharset(), ".properties file");
if (fileType == StdFileTypes.XML || fileType == StdFileTypes.JSPX) {
return Pair.create(virtualFile.getCharset(), "XML file");
}
return Pair.create(null, null);
}
示例2: getFileType
@NotNull
@Override
public FileType getFileType()
{
return StdFileTypes.PROPERTIES;
}
示例3: isNative2Ascii
@Override
public boolean isNative2Ascii(@NotNull final VirtualFile virtualFile) {
return virtualFile.getFileType() == StdFileTypes.PROPERTIES && myNative2AsciiForPropertiesFiles;
}
示例4: collectInformation
@Override
public State collectInformation(@NotNull PsiFile file) {
final Module module = ModuleUtilCore.findModuleForPsiElement(file);
if (module == null) {
return null;
}
final AndroidFacet facet = AndroidFacet.getInstance(module);
if (facet == null && !IntellijLintProject.hasAndroidModule(module.getProject())) {
return null;
}
final VirtualFile vFile = file.getVirtualFile();
if (vFile == null) {
return null;
}
final FileType fileType = file.getFileType();
if (fileType == StdFileTypes.XML) {
if (facet == null || facet.getLocalResourceManager().getFileResourceType(file) == null &&
!SdkConstants.ANDROID_MANIFEST_XML.equals(vFile.getName())) {
return null;
}
}
else if (fileType == FileTypes.PLAIN_TEXT) {
if (!AndroidCommonUtils.PROGUARD_CFG_FILE_NAME.equals(file.getName()) &&
!AndroidCompileUtil.OLD_PROGUARD_CFG_FILE_NAME.equals(file.getName())) {
return null;
}
}
else if (fileType == GroovyFileType.GROOVY_FILE_TYPE) {
if (!SdkUtils.endsWithIgnoreCase(file.getName(), DOT_GRADLE)) {
return null;
}
// Ensure that we're listening to the PSI structure for Gradle file edit notifications
Project project = file.getProject();
if (Projects.isGradleProject(project)) {
PsiProjectListener.getListener(project);
}
}
else if (fileType != StdFileTypes.JAVA && fileType != StdFileTypes.PROPERTIES) {
return null;
}
final List<Issue> issues = getIssuesFromInspections(file.getProject(), file);
if (issues.size() == 0) {
return null;
}
return new State(module, vFile, file.getText(), issues);
}
示例5: getFileType
@NotNull
@Override
protected FileType getFileType() {
return StdFileTypes.PROPERTIES;
}