本文整理汇总了Java中com.intellij.util.PlatformUtils.isRubyMine方法的典型用法代码示例。如果您正苦于以下问题:Java PlatformUtils.isRubyMine方法的具体用法?Java PlatformUtils.isRubyMine怎么用?Java PlatformUtils.isRubyMine使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.util.PlatformUtils
的用法示例。
在下文中一共展示了PlatformUtils.isRubyMine方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: FindSettingsImpl
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
public FindSettingsImpl() {
recentFileMasks.add("*.properties");
recentFileMasks.add("*.html");
recentFileMasks.add("*.jsp");
recentFileMasks.add("*.xml");
recentFileMasks.add("*.java");
recentFileMasks.add("*.js");
recentFileMasks.add("*.as");
recentFileMasks.add("*.css");
recentFileMasks.add("*.mxml");
if (PlatformUtils.isPyCharm()) {
recentFileMasks.add("*.py");
}
else if (PlatformUtils.isRubyMine()) {
recentFileMasks.add("*.rb");
}
else if (PlatformUtils.isPhpStorm()) {
recentFileMasks.add("*.php");
}
}
示例2: FindSettingsImpl
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
public FindSettingsImpl() {
RECENT_FILE_MASKS.add("*.properties");
RECENT_FILE_MASKS.add("*.html");
RECENT_FILE_MASKS.add("*.jsp");
RECENT_FILE_MASKS.add("*.xml");
RECENT_FILE_MASKS.add("*.java");
RECENT_FILE_MASKS.add("*.js");
RECENT_FILE_MASKS.add("*.as");
RECENT_FILE_MASKS.add("*.css");
RECENT_FILE_MASKS.add("*.mxml");
if (PlatformUtils.isPyCharm()) {
RECENT_FILE_MASKS.add("*.py");
}
else if (PlatformUtils.isRubyMine()) {
RECENT_FILE_MASKS.add("*.rb");
}
else if (PlatformUtils.isPhpStorm()) {
RECENT_FILE_MASKS.add("*.php");
}
}
示例3: getDefaultCommonSettings
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
@Override
public CommonCodeStyleSettings getDefaultCommonSettings() {
CommonCodeStyleSettings xmlSettings = new CommonCodeStyleSettings(getLanguage());
CommonCodeStyleSettings.IndentOptions indentOptions = xmlSettings.initIndentOptions();
xmlSettings.setForceArrangeMenuAvailable(true);
// HACK [yole]
if (PlatformUtils.isRubyMine()) {
indentOptions.INDENT_SIZE = 2;
}
return xmlSettings;
}
示例4: getDefaultCommonSettings
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
@Override
public CommonCodeStyleSettings getDefaultCommonSettings() {
CommonCodeStyleSettings xmlSettings = new CommonCodeStyleSettings(getLanguage());
CommonCodeStyleSettings.IndentOptions indentOptions = xmlSettings.initIndentOptions();
// HACK [yole]
if (PlatformUtils.isRubyMine()) {
indentOptions.INDENT_SIZE = 2;
}
return xmlSettings;
}
示例5: isAvailable
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
public static boolean isAvailable() {
return Registry.is("ide.new.welcome.screen")
&& (PlatformUtils.isIntelliJ() || PlatformUtils.isCidr() || PlatformUtils.isWebStorm() ||
PlatformUtils.isPyCharm() || PlatformUtils.isRubyMine() || PlatformUtils.isPhpStorm());
}
示例6: needDisplay
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
@Override
public boolean needDisplay() {
// TODO[yole] cleaner API
return !PlatformUtils.isRubyMine();
}