Example usage for com.intellij.openapi.command.undo UndoManager getRedoActionNameAndDescription

List of usage examples for com.intellij.openapi.command.undo UndoManager getRedoActionNameAndDescription

Introduction

In this page you can find the example usage for com.intellij.openapi.command.undo UndoManager getRedoActionNameAndDescription.

Prototype

@NotNull
    public abstract Pair<String, String> getRedoActionNameAndDescription(FileEditor editor);

Source Link

Usage

From source file:com.intellij.ide.actions.RedoAction.java

License:Apache License

@Override
protected Pair<String, String> getActionNameAndDescription(FileEditor editor, UndoManager undoManager) {
    return undoManager.getRedoActionNameAndDescription(editor);
}