Improve error reporting in the branch dialog
[egit/imyousuf.git] / org.spearce.egit.ui / src / org / spearce / egit / ui / internal / actions / SoftResetToRevisionAction.java
blob7d7ff7a26b4631937d61d842abfbdf6e424243c5
1 /*******************************************************************************
2 * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * See LICENSE for the full license text, also available.
7 *******************************************************************************/
8 package org.spearce.egit.ui.internal.actions;
10 import java.util.List;
12 import org.eclipse.core.resources.IWorkspaceRunnable;
13 import org.eclipse.jface.action.IAction;
14 import org.spearce.egit.core.op.ResetOperation;
15 import org.spearce.jgit.lib.AnyObjectId;
17 /**
18 * Soft reset to selected revision
20 public class SoftResetToRevisionAction extends AbstractRevObjectAction {
22 @Override
23 protected IWorkspaceRunnable createOperation(IAction act, List selection) {
24 return new ResetOperation(getActiveRepository(),
25 ((AnyObjectId) selection.get(0)).name(),
26 ResetOperation.ResetType.SOFT);