本文整理汇总了Java中com.intellij.openapi.actionSystem.AnAction.isDumbAware方法的典型用法代码示例。如果您正苦于以下问题:Java AnAction.isDumbAware方法的具体用法?Java AnAction.isDumbAware怎么用?Java AnAction.isDumbAware使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.actionSystem.AnAction
的用法示例。
在下文中一共展示了AnAction.isDumbAware方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: lastUpdateAndCheckDumb
import com.intellij.openapi.actionSystem.AnAction; //导入方法依赖的package包/类
public static boolean lastUpdateAndCheckDumb(AnAction action, AnActionEvent e, boolean visibilityMatters) {
performDumbAwareUpdate(action, e, true);
final Project project = CommonDataKeys.PROJECT.getData(e.getDataContext());
if (project != null && DumbService.getInstance(project).isDumb() && !action.isDumbAware()) {
if (Boolean.FALSE.equals(e.getPresentation().getClientProperty(WOULD_BE_ENABLED_IF_NOT_DUMB_MODE))) {
return false;
}
if (visibilityMatters && Boolean.FALSE.equals(e.getPresentation().getClientProperty(WOULD_BE_VISIBLE_IF_NOT_DUMB_MODE))) {
return false;
}
showDumbModeWarning(e);
return false;
}
if (!e.getPresentation().isEnabled()) {
return false;
}
if (visibilityMatters && !e.getPresentation().isVisible()) {
return false;
}
return true;
}
示例2: performDumbAwareUpdate
import com.intellij.openapi.actionSystem.AnAction; //导入方法依赖的package包/类
/**
* @param action action
* @param e action event
* @param beforeActionPerformed whether to call
* {@link com.intellij.openapi.actionSystem.AnAction#beforeActionPerformedUpdate(com.intellij.openapi.actionSystem.AnActionEvent)}
* or
* {@link com.intellij.openapi.actionSystem.AnAction#update(com.intellij.openapi.actionSystem.AnActionEvent)}
* @return true if update tried to access indices in dumb mode
*/
public static boolean performDumbAwareUpdate(AnAction action, AnActionEvent e, boolean beforeActionPerformed) {
final Presentation presentation = e.getPresentation();
final Boolean wasEnabledBefore = (Boolean)presentation.getClientProperty(WAS_ENABLED_BEFORE_DUMB);
final boolean dumbMode = isDumbMode(CommonDataKeys.PROJECT.getData(e.getDataContext()));
if (wasEnabledBefore != null && !dumbMode) {
presentation.putClientProperty(WAS_ENABLED_BEFORE_DUMB, null);
presentation.setEnabled(wasEnabledBefore.booleanValue());
presentation.setVisible(true);
}
final boolean enabledBeforeUpdate = presentation.isEnabled();
final boolean notAllowed = dumbMode && !action.isDumbAware();
try {
if (beforeActionPerformed) {
action.beforeActionPerformedUpdate(e);
}
else {
action.update(e);
}
presentation.putClientProperty(WOULD_BE_ENABLED_IF_NOT_DUMB_MODE, notAllowed && presentation.isEnabled());
presentation.putClientProperty(WOULD_BE_VISIBLE_IF_NOT_DUMB_MODE, notAllowed && presentation.isVisible());
}
catch (IndexNotReadyException e1) {
if (notAllowed) {
return true;
}
throw e1;
}
finally {
if (notAllowed) {
if (wasEnabledBefore == null) {
presentation.putClientProperty(WAS_ENABLED_BEFORE_DUMB, enabledBeforeUpdate);
}
presentation.setEnabled(false);
}
}
return false;
}