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

Source Code of org.eclipse.egit.ui.internal.commands.shared.AbortRebaseCommand

/*******************************************************************************
* Copyright (c) 2010 SAP AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*    Mathias Kinzler (SAP AG) - initial implementation
*******************************************************************************/
package org.eclipse.egit.ui.internal.commands.shared;

import org.eclipse.core.commands.ExecutionException;
import org.eclipse.egit.core.op.RebaseOperation;
import org.eclipse.egit.ui.internal.UIText;
import org.eclipse.jgit.api.RebaseCommand.Operation;
import org.eclipse.jgit.lib.Repository;

/**
* Implements "Abort Rebase"
*/
public class AbortRebaseCommand extends AbstractRebaseCommandHandler {
  /**
   * Default constructor
   */
  public AbortRebaseCommand() {
    super(UIText.AbortRebaseCommand_JobName,
        UIText.AbortRebaseCommand_CancelDialogMessage);
  }

  @Override
  protected RebaseOperation createRebaseOperation(Repository repository)
      throws ExecutionException {
    return new RebaseOperation(repository, Operation.ABORT);
  }
}
TOP

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

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.