Examples of OpenDeclarationAction


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

Examples of net.sourceforge.veditor.actions.OpenDeclarationAction

      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

Examples of org.epic.perleditor.actions.OpenDeclarationAction

            return null;
        }

        public void open()
        {
            OpenDeclarationAction action =
                (OpenDeclarationAction) editor.getAction(PerlEditorActionIds.OPEN_DECLARATION);
           
            if (action != null) action.run(
                new TextSelection(subNameRegion.getOffset(), subNameRegion.getLength()));
        }
View Full Code Here

Examples of org.erlide.ui.internal.information.OpenDeclarationAction

     * @see AbstractInfoView#createActions()
     */
    @Override
    protected void createActions() {
        super.createActions();
        openDeclarationAction = new OpenDeclarationAction(this);
        openDeclarationAction.setEnabled(false);
        fSelectAllAction = new SelectAllAction(getControl(), new SelectionProvider(
                getControl()));
    }
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.