Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 255f66a067fddfd8e4693c987ed1ebfd6789a6f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
 *
 * 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
 *******************************************************************************/
package org.eclipse.egit.ui.internal.actions;

import java.util.List;

import org.eclipse.core.resources.IWorkspaceRunnable;
import org.eclipse.egit.core.op.ResetOperation;
import org.eclipse.jgit.lib.AnyObjectId;

/**
 * Hard reset to selected revision
 */
public class HardResetToRevisionAction extends AbstractRevObjectAction {

	@Override
	protected IWorkspaceRunnable createOperation(List selection) {
		return new ResetOperation(getActiveRepository(),
				((AnyObjectId) selection.get(0)).name(),
				ResetOperation.ResetType.HARD);
	}
}

Back to the top