Example usage for com.intellij.openapi.actionSystem IdeActions GROUP_REFACTOR

List of usage examples for com.intellij.openapi.actionSystem IdeActions GROUP_REFACTOR

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem IdeActions GROUP_REFACTOR.

Prototype

String GROUP_REFACTOR

To view the source code for com.intellij.openapi.actionSystem IdeActions GROUP_REFACTOR.

Click Source Link

Usage

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

License:Apache License

@Override
protected void fillActions(@Nullable final Project project, @NotNull final DefaultActionGroup group,
        @NotNull final DataContext dataContext) {
    if (project == null) {
        return;/*from   w w w . j av  a 2  s. c o  m*/
    }

    final ActionManager actionManager = ActionManager.getInstance();
    final AnAction action = actionManager.getAction(IdeActions.GROUP_REFACTOR);
    collectEnabledChildren(action, group, dataContext, actionManager, false);
}