Package org.erlide.ui.editors.erl.actions

Examples of org.erlide.ui.editors.erl.actions.SendToConsoleAction


        openAction.setActionDefinitionId(IErlangEditorActionDefinitionIds.OPEN_EDITOR);
        setAction(IErlangEditorActionDefinitionIds.OPEN, openAction);

        final ResourceBundle keyBundle = ErlangEditorMessages
                .getBundleForConstructedKeys();
        sendToConsole = new SendToConsoleAction(getSite(), keyBundle, "SendToConsole.",
                this, false, getProject());
        sendToConsole
                .setActionDefinitionId(IErlangEditorActionDefinitionIds.SEND_TO_CONSOLE);
        setAction("SendToConsole", sendToConsole);
        markAsStateDependentAction("sendToConsole", true);
        markAsSelectionDependentAction("sendToConsole", true);

        sendToConsoleWithResult = new SendToConsoleAction(getSite(), keyBundle,
                "SendToConsoleWithResult.", this, true, getProject());
        sendToConsoleWithResult
                .setActionDefinitionId(IErlangEditorActionDefinitionIds.SEND_TO_CONSOLE_WITH_RESULT);
        setAction("SendToConsoleWithResult", sendToConsoleWithResult);
        markAsStateDependentAction("sendToConsoleWithResult", true);
View Full Code Here

TOP

Related Classes of org.erlide.ui.editors.erl.actions.SendToConsoleAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.