Package org.eclipse.egit.ui.internal.commands.shared

Examples of org.eclipse.egit.ui.internal.commands.shared.ContinueRebaseCommand


    boolean rebaseing = isInRebasingState(repo);
    boolean canContinue = rebaseing && canContinue(repo);

    addMenuItem(menu, UIText.RebasePulldownAction_Continue, rebaseContinue,
        new ContinueRebaseCommand(), canContinue);
    addMenuItem(menu, UIText.RebasePulldownAction_Skip, rebaseSkip,
        new SkipRebaseCommand(), rebaseing);
    addMenuItem(menu, UIText.RebasePulldownAction_Abort, rebaseAbort,
        new AbortRebaseCommand(), rebaseing);
    return menu;
View Full Code Here


  /**
   * Continue rebase command in progress
   */
  protected void rebaseContinue() {
    ContinueRebaseCommand continueCommand = new ContinueRebaseCommand();
    executeRebaseOperation(continueCommand);
  }
View Full Code Here

    continueItem = new ToolItem(toolBar, SWT.NONE);
    continueItem.setImage(UIIcons.getImage(resources,
        UIIcons.REBASE_CONTINUE));
    continueItem
        .addSelectionListener(new RebaseCommandItemSelectionListener(
            new ContinueRebaseCommand()));
    continueItem.setEnabled(false);
    continueItem.setText(UIText.InteractiveRebaseView_continueItem_text);

    skipItem = new ToolItem(toolBar, SWT.NONE);
    skipItem.setImage(UIIcons.getImage(resources, UIIcons.REBASE_SKIP));
View Full Code Here

TOP

Related Classes of org.eclipse.egit.ui.internal.commands.shared.ContinueRebaseCommand

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.