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

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

Introduction

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

Prototype

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

Source Link

Usage

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

License:Apache License

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