blob: 3f072bbf63aab6352bc01b9f92114c04f5ee573d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.tests.ccvs.core.subscriber;
import org.eclipse.compare.structuremergeviewer.IDiffElement;
import org.eclipse.team.core.synchronize.SyncInfoSet;
import org.eclipse.team.internal.ccvs.ui.subscriber.WorkspaceUpdateOperation;
import org.eclipse.team.tests.ccvs.core.EclipseTest;
class TestUpdateOperation extends WorkspaceUpdateOperation {
protected TestUpdateOperation(IDiffElement[] elements) {
super(null, elements, false);
}
/* (non-Javadoc)
* @see org.eclipse.team.internal.ui.actions.TeamOperation#canRunAsJob()
*/
protected boolean canRunAsJob() {
return false;
}
/* (non-Javadoc)
* @see org.eclipse.team.internal.ccvs.ui.subscriber.SafeUpdateOperation#warnAboutFailedResources(org.eclipse.team.core.synchronize.SyncInfoSet)
*/
protected void warnAboutFailedResources(SyncInfoSet syncSet) {
return;
}
/* (non-Javadoc)
* @see org.eclipse.team.internal.ccvs.ui.subscriber.CVSSubscriberOperation#promptForOverwrite(org.eclipse.team.core.synchronize.SyncInfoSet)
*/
protected boolean promptForOverwrite(SyncInfoSet syncSet) {
EclipseTest.fail("Should never prompt on update, simply update nodes that are valid.");
return false;
}
}