Example usage for com.intellij.openapi.actionSystem ActionPlaces ACTION_PLACE_QUICK_LIST_POPUP_ACTION

List of usage examples for com.intellij.openapi.actionSystem ActionPlaces ACTION_PLACE_QUICK_LIST_POPUP_ACTION

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem ActionPlaces ACTION_PLACE_QUICK_LIST_POPUP_ACTION.

Prototype

String ACTION_PLACE_QUICK_LIST_POPUP_ACTION

To view the source code for com.intellij.openapi.actionSystem ActionPlaces ACTION_PLACE_QUICK_LIST_POPUP_ACTION.

Click Source Link

Usage

From source file:com.intellij.refactoring.actions.RefactoringQuickListPopupAction.java

License:Apache License

@Override
public void update(AnActionEvent e) {
    super.update(e);
    e.getPresentation().setVisible(e.getPlace() == ActionPlaces.MAIN_MENU
            || e.getPlace() == ActionPlaces.ACTION_PLACE_QUICK_LIST_POPUP_ACTION);
}