Package org.eclipse.dltk.internal.ui.actions

Examples of org.eclipse.dltk.internal.ui.actions.CompositeActionGroup


    // 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


    protected void createActions()
    {

        super.createActions();

        contextMenuGroup = new CompositeActionGroup(
                new ActionGroup[]{getRefactorGroup()});

    }
View Full Code Here

    }

    public ActionGroup getActionGroup()
    {

        CompositeActionGroup group = (CompositeActionGroup) super
                .getActionGroup();
        group.addGroup(getRefactorGroup());
        return group;

    }
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.ui.actions.CompositeActionGroup

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.