本文整理汇总了Java中com.intellij.util.PlatformUtils.isPhpStorm方法的典型用法代码示例。如果您正苦于以下问题:Java PlatformUtils.isPhpStorm方法的具体用法?Java PlatformUtils.isPhpStorm怎么用?Java PlatformUtils.isPhpStorm使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.util.PlatformUtils
的用法示例。
在下文中一共展示了PlatformUtils.isPhpStorm方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: showNotificationByMessageId
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
public static void showNotificationByMessageId(final Project project, @NotNull String messageId) {
NotificationListener listener = null;
if (PlatformUtils.isPhpStorm()) {
listener = new NotificationListener() {
public void hyperlinkUpdate(@NotNull Notification notification, @NotNull HyperlinkEvent event) {
ShowSettingsUtil.getInstance().showSettingsDialog(project, "Directories");
notification.expire();
}
};
}
showNotificationByMessageId(project, messageId, listener);
}
开发者ID:aurimasniekis,项目名称:idea-php-psr4-namespace-detector,代码行数:15,代码来源:PhpPsr4NamespaceNotifier.java
示例4: isPrimaryGenerator
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
@Override
public boolean isPrimaryGenerator() {
return PlatformUtils.isPhpStorm();
}
开发者ID:cedricziel,项目名称:idea-php-typo3-plugin,代码行数:5,代码来源:TYPO3CMSComposerLayoutDirectoryProjectGenerator.java
示例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: isPrimaryGenerator
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
public boolean isPrimaryGenerator() {
return PlatformUtils.isPhpStorm();
}
示例7: isPrimaryGenerator
import com.intellij.util.PlatformUtils; //导入方法依赖的package包/类
public boolean isPrimaryGenerator()
{
return PlatformUtils.isPhpStorm();
}