Example usage for com.intellij.openapi.actionSystem CommonShortcuts getRename

List of usage examples for com.intellij.openapi.actionSystem CommonShortcuts getRename

Introduction

In this page you can find the example usage for com.intellij.openapi.actionSystem CommonShortcuts getRename.

Prototype

public static ShortcutSet getRename() 

Source Link

Usage

From source file:com.android.tools.idea.profiling.view.RenameCaptureFileAction.java

License:Apache License

protected RenameCaptureFileAction(JComponent ancestorComponent) {
    super("Rename...", "Rename selected capture file", null);
    registerCustomShortcutSet(CommonShortcuts.getRename(), ancestorComponent);
}

From source file:com.vladsch.MissingInActions.util.CommonUIShortcuts.java

License:Apache License

public static ShortcutSet getRename() {
    return CommonShortcuts.getRename();
}