當前位置: 首頁>>代碼示例>>Java>>正文


Java AnAction.update方法代碼示例

本文整理匯總了Java中com.intellij.openapi.actionSystem.AnAction.update方法的典型用法代碼示例。如果您正苦於以下問題:Java AnAction.update方法的具體用法?Java AnAction.update怎麽用?Java AnAction.update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.intellij.openapi.actionSystem.AnAction的用法示例。


在下文中一共展示了AnAction.update方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: executeAction

import com.intellij.openapi.actionSystem.AnAction; //導入方法依賴的package包/類
public static void executeAction(String actionId, InputEvent e) {
    ActionManager actionManager = ActionManager.getInstance();
    AnAction action = actionManager.getAction(actionId);
    if (action != null) {
        Presentation presentation = new Presentation();
        AnActionEvent event = new AnActionEvent(e, DataManager.getInstance().getDataContext(e.getComponent()), "", presentation, actionManager, 0);
        action.update(event);
        if (presentation.isEnabled()) {
            action.actionPerformed(event);
        }
    }
}
 
開發者ID:seedstack,項目名稱:intellij-plugin,代碼行數:13,代碼來源:NavigatorUtil.java

示例2: executeAction

import com.intellij.openapi.actionSystem.AnAction; //導入方法依賴的package包/類
protected void executeAction(final String actionId) {
  final AnAction action = ActionManager.getInstance().getAction(actionId);
  final AnActionEvent event = AnActionEvent.createFromAnAction(action, null, ActionPlaces.UNKNOWN,
                                                               DataManager.getInstance().getDataContext(this));
  action.beforeActionPerformedUpdate(event);
  action.update(event);

  if (event.getPresentation().isEnabled() && event.getPresentation().isVisible()) {
    action.actionPerformed(event);
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:12,代碼來源:EditorNotificationPanel.java

示例3: executeAction

import com.intellij.openapi.actionSystem.AnAction; //導入方法依賴的package包/類
public static void executeAction(final String actionId, final InputEvent e) {
  final ActionManager actionManager = ActionManager.getInstance();
  final AnAction action = actionManager.getAction(actionId);
  if (action != null) {
    final Presentation presentation = new Presentation();
    final AnActionEvent event =
      new AnActionEvent(e, DataManager.getInstance().getDataContext(e.getComponent()), "", presentation, actionManager, 0);
    action.update(event);
    if (presentation.isEnabled()) {
      action.actionPerformed(event);
    }
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:14,代碼來源:MavenUIUtil.java

示例4: 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;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:50,代碼來源:ActionUtil.java

示例5: assertStatus

import com.intellij.openapi.actionSystem.AnAction; //導入方法依賴的package包/類
private void assertStatus(AnAction a, VirtualFile[] files, Project p, boolean isEnabled) {
  AnActionEvent e = createEventFor(a, files, p);
  a.update(e);
  assertEquals(isEnabled, e.getPresentation().isEnabled());
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:6,代碼來源:LocalHistoryActionsTest.java


注:本文中的com.intellij.openapi.actionSystem.AnAction.update方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。