Examples of GotoMatchingBracketAction


Examples of net.sourceforge.veditor.actions.GotoMatchingBracketAction

        ISourceViewer.CONTENTASSIST_PROPOSALS);
    action.setActionDefinitionId(ITextEditorActionDefinitionIds.CONTENT_ASSIST_PROPOSALS);
    setAction("ContentAssistProposal", action);

    // add special actions
    setAction("GotoMatchingBracket", new GotoMatchingBracketAction());
    setAction("OpenDeclaration", new OpenDeclarationAction());
    setAction("Format", new FormatAction());
    setAction("Compile", new CompileAction());
    setAction("Synthesize", new SynthesizeAction());
    setAction("Comment", new CommentAction());
View Full Code Here

Examples of net.sourceforge.veditor.actions.GotoMatchingBracketAction

    contentAssistProposal =
      createAction(
        CONTENT_ASSIST_PROPOSAL,
        ITextEditorActionDefinitionIds.CONTENT_ASSIST_PROPOSALS);
   
    gotoMatchingBracket = new GotoMatchingBracketAction();
    openDeclaration = new OpenDeclarationAction();
    collapseAllAction = new CollapseAll();
    expandAllAction   = new ExpandAll();
    format = new FormatAction();
    compile = new CompileAction();
View Full Code Here

Examples of org.eclipse.php.internal.ui.actions.GotoMatchingBracketAction

    setAction(StructureSelectionAction.HISTORY, historyAction);
    fSelectionHistory.setHistoryAction(historyAction);

    final ResourceBundle resourceBundle = PHPUIMessages.getResourceBundle();

    action = new GotoMatchingBracketAction(this);
    action.setActionDefinitionId(IPHPEditorActionDefinitionIds.GOTO_MATCHING_BRACKET);
    setAction(GotoMatchingBracketAction.GOTO_MATCHING_BRACKET, action);

    action = new OpenFunctionsManualAction(resourceBundle, this);
    action.setActionDefinitionId(IPHPEditorActionDefinitionIds.OPEN_PHP_MANUAL); //$NON-NLS-1$
View Full Code Here

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

                ErlangEditorMessages.getBundleForConstructedKeys(), "ShowOutline.", this);
        fShowOutline.setActionDefinitionId(IErlangEditorActionDefinitionIds.SHOW_OUTLINE);
        setAction(IErlangEditorActionDefinitionIds.SHOW_OUTLINE, fShowOutline);
        markAsContentDependentAction(IErlangEditorActionDefinitionIds.SHOW_OUTLINE, true);

        final Action action = new GotoMatchingBracketAction(this);
        action.setActionDefinitionId(IErlangEditorActionDefinitionIds.GOTO_MATCHING_BRACKET);
        setAction(GotoMatchingBracketAction.GOTO_MATCHING_BRACKET, action);

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.