blob: 563409201a4fdd3e0808fc271309d848d2f90197 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.ui.actions;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.jface.action.IAction;
import org.eclipse.team.internal.ccvs.ui.ICVSUIConstants;
import org.eclipse.team.internal.ccvs.ui.wizards.UpdateWizard;
/**
* UpdateAction performs a 'cvs update' command on the selected resources.
* If conflicts are present (file has been changed both remotely and locally),
* the changes will be merged into the local file such that the user must
* resolve the conflicts. This action is temporary code; it will be removed
* when a functional synchronize view has been implemented.
*/
public class UpdateAction extends UpdateSilentAction {
@Override
public void execute(IAction action) throws InterruptedException, InvocationTargetException {
UpdateWizard.run(getTargetPart(), getCVSResourceMappings());
}
@Override
public String getId() {
return ICVSUIConstants.CMD_UPDATESWITCH;
}
}