Example usage for com.intellij.openapi.editor.actionSystem TypedActionHandler interface-usage

List of usage examples for com.intellij.openapi.editor.actionSystem TypedActionHandler interface-usage

Introduction

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

Usage

From source file com.google.bamboo.soy.insight.typedhandlers.ClosingTagHandler.java

/**
 * Automatically inserts a matching closing tag when "{/" is typed.
 */
public class ClosingTagHandler implements TypedActionHandler {

    private final TypedActionHandler myOriginalHandler;

From source file com.intellij.codeInsight.template.impl.editorActions.TypedActionHandlerBase.java

public abstract class TypedActionHandlerBase implements TypedActionHandler {
    @Nullable
    protected final TypedActionHandler myOriginalHandler;

    public TypedActionHandlerBase(@Nullable TypedActionHandler originalHandler) {
        myOriginalHandler = originalHandler;

From source file org.jetbrains.plugins.ruby.ruby.actions.editor.handlers.RubyTypedHandler.java

/**
 * Created by IntelliJ IDEA.
 * User: oleg
 * Date: 09.08.2006
 */
public class RubyTypedHandler implements TypedActionHandler, RubyTokenTypes {