Package net.sourceforge.veditor.actions

Examples of net.sourceforge.veditor.actions.OpenDeclarationAction


    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());
    setAction("Uncomment", new UnCommentAction());
View Full Code Here


      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();
    synthesize = new SynthesizeAction();
View Full Code Here

TOP

Related Classes of net.sourceforge.veditor.actions.OpenDeclarationAction

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.