blob: 8d8f448d1bba13dc159b494251536eb83e884a35 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* 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.jface.wizard.WizardDialog;
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 WorkspaceAction {
/*
* @see IActionDelegate#run(IAction)
*/
public void execute(IAction action) throws InterruptedException, InvocationTargetException {
UpdateWizard wizard = new UpdateWizard(getTargetPart(), getSelectedResources());
WizardDialog dialog = new WizardDialog(getShell(), wizard);
dialog.open();
}
/**
* @see org.eclipse.team.internal.ccvs.ui.actions.WorkspaceAction#isEnabledForAddedResources()
*/
protected boolean isEnabledForAddedResources() {
return false;
}
/* (non-Javadoc)
* @see org.eclipse.team.internal.ccvs.ui.actions.WorkspaceAction#isEnabledForNonExistantResources()
*/
protected boolean isEnabledForNonExistantResources() {
return true;
}
public String getId() {
return ICVSUIConstants.CMD_UPDATESWITCH;
}
}