Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2b991f8635bc3ac3550b3c95d8b8fb2b07623fa8 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * Copyright (c) 2003, 2006 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.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.OverrideAndUpdateSubscriberOperation;

public class TestOverrideAndUpdateOperation extends OverrideAndUpdateSubscriberOperation {	

	private boolean prompted = false; 
	
	protected TestOverrideAndUpdateOperation(IDiffElement[] elements) {
		super(null, elements);
	}
	
	@Override
	protected boolean canRunAsJob() {
		return false;
	}
	
	@Override
	protected boolean promptForOverwrite(SyncInfoSet syncSet) {
		TestOverrideAndUpdateOperation.this.prompted = true;
		return true;
	}
	
	public boolean isPrompted() {
		return this.prompted;
	}
}

Back to the top