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

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

Introduction

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

Prototype

String RUN_CONFIGURATIONS_COMBOBOX

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

Click Source Link

Usage

From source file:com.intellij.execution.actions.EditRunConfigurationsAction.java

License:Apache License

@RequiredDispatchThread
@Override/*w  w  w . j  a va2 s .  c o  m*/
public void update(final AnActionEvent e) {
    Presentation presentation = e.getPresentation();
    presentation.setEnabled(true);
    if (ActionPlaces.RUN_CONFIGURATIONS_COMBOBOX.equals(e.getPlace())) {
        presentation.setText(ExecutionBundle.message("edit.configuration.action"));
        presentation.setDescription(presentation.getText());
    }
}