blob: 70f955cc866bf38b17e656a84e125208c5c63ac7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.actions;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.team.internal.ccvs.ui.ICVSUIConstants;
import org.eclipse.team.internal.ccvs.ui.wizards.MergeWizard;
public class MergeAction extends WorkspaceTraversalAction {
/*
* @see CVSAction#execute()
*/
public void execute(IAction action) {
final Shell shell = getShell();
shell.getDisplay().syncExec(new Runnable() {
public void run() {
MergeWizard wizard = new MergeWizard(getTargetPart(), getSelectedResources(), getCVSResourceMappings());
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.open();
}
});
}
/* (non-Javadoc)
* @see org.eclipse.team.internal.ccvs.ui.actions.CVSAction#getId()
*/
public String getId() {
return ICVSUIConstants.CMD_MERGE;
}
}