Example usage for com.intellij.openapi.editor.actionSystem EditorActionHandler subclass-usage

List of usage examples for com.intellij.openapi.editor.actionSystem EditorActionHandler subclass-usage

Introduction

In this page you can find the example usage for com.intellij.openapi.editor.actionSystem EditorActionHandler subclass-usage.

Usage

From source file browsewordatcaret.BWACHandlerBrowse.java

public class BWACHandlerBrowse extends EditorActionHandler {
    private BrowseDirection browseDirection;

    public BWACHandlerBrowse(BrowseDirection browseDirection) {
        this.browseDirection = browseDirection;
    }

From source file com.ansorgit.smarter.AbstractEditorHandler.java

/**
 * User: jansorg
 * Date: Mar 7, 2010
 * Time: 11:17:20 PM
 */
public abstract class AbstractEditorHandler extends EditorActionHandler {

From source file com.ansorgit.smarter.smartSplit.SmartSplitHandler.java

/**
 * This editor handler splits a string literal into two parts seperated by + operators.
 * It works with JavaScript and Java literals.
 * <p/>
 * Position the caret inside a string literal and press alt+PLUS, a string "ab|c" is turned
 * into "ab" + | + "c".

From source file com.ansorgit.smarter.sortSelection.SortSelectionHandler.java

/**
 * User: jansorg
 * Date: 03.06.2010
 * Time: 15:49:30
 */
public class SortSelectionHandler extends EditorActionHandler {

From source file com.intellij.codeInsight.editorActions.CopyHandler.java

public class CopyHandler extends EditorActionHandler {
    private final EditorActionHandler myOriginalAction;

    public CopyHandler(final EditorActionHandler originalHandler) {
        myOriginalAction = originalHandler;
    }

From source file com.intellij.codeInsight.editorActions.EndHandler.java

public class EndHandler extends EditorActionHandler {
    private final EditorActionHandler myOriginalHandler;

    public EndHandler(EditorActionHandler originalHandler) {
        super(true);
        myOriginalHandler = originalHandler;

From source file com.intellij.codeInsight.editorActions.PasteHandler.java

public class PasteHandler extends EditorActionHandler implements EditorTextInsertHandler {
    private static final Logger LOG = Logger.getInstance("#com.intellij.codeInsight.editorActions.PasteHandler");
    private static final ExtensionPointName<PasteProvider> EP_NAME = ExtensionPointName
            .create("com.intellij.customPasteProvider");

    private final EditorActionHandler myOriginalHandler;

From source file com.intellij.codeInsight.editorActions.SelectWordHandler.java

public class SelectWordHandler extends EditorActionHandler {
    private static final Logger LOG = Logger
            .getInstance("#com.intellij.codeInsight.editorActions.SelectWordHandler");

    private final EditorActionHandler myOriginalHandler;

From source file com.intellij.codeInsight.editorActions.UnSelectWordHandler.java

public class UnSelectWordHandler extends EditorActionHandler {
    private final EditorActionHandler myOriginalHandler;

    public UnSelectWordHandler(EditorActionHandler originalHandler) {
        super(true);
        myOriginalHandler = originalHandler;

From source file com.intellij.codeInsight.highlighting.EscapeHandler.java

public class EscapeHandler extends EditorActionHandler {
    private final EditorActionHandler myOriginalHandler;

    public EscapeHandler(EditorActionHandler originalHandler) {
        myOriginalHandler = originalHandler;
    }