Package org.eclipse.ui.actions

Examples of org.eclipse.ui.actions.ActionGroup


    }

    @Override
    protected void createActions() {
        super.createActions();
        ActionGroup esg;
        fActionGroups = new CompositeActionGroup(
                new ActionGroup[] { esg = new ErlangSearchActionGroup(this) });
        fContextMenuGroup = new CompositeActionGroup(new ActionGroup[] { esg });

        createCommonActions();
View Full Code Here


    }

    @Override
    protected void createActions() {
        super.createActions();
        ActionGroup esg;
        fActionGroups = new CompositeActionGroup(
                new ActionGroup[] { esg = new ErlangSearchActionGroup(this) });
        fContextMenuGroup = new CompositeActionGroup(new ActionGroup[] { esg });

        createCommonActions();
View Full Code Here

   * Returns an empty action groups to remove the action bar at the top
   * of the navigator view.
   */
  @Override
  protected ActionGroup createCommonActionGroup() {
    return new ActionGroup() {
    };
  }
View Full Code Here

              getVerticalRuler(), null));
    }

    // ActionGroup rg = new RefactorActionGroup(this,
    // ITextEditorActionConstants.GROUP_EDIT);
    ActionGroup jsg = new PHPSearchActionGroup(this);

    // We have to keep the context menu group separate to have better
    // control over positioning
    fActionGroups = new CompositeActionGroup(new ActionGroup[] { jsg });
    fContextMenuGroup = new CompositeActionGroup(new ActionGroup[] { jsg });
View Full Code Here

TOP

Related Classes of org.eclipse.ui.actions.ActionGroup

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.