Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1ab2e2991139eccbcfa5b2132cddbd9c0475515e (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
/*******************************************************************************
 * Copyright (c) 2006 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.examples.model.ui.mapping;

import org.eclipse.team.ui.mapping.SynchronizationActionProvider;
import org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration;

/**
 * The action provider that is used for synchronizations.
 */
public class ModelSyncActionProvider extends SynchronizationActionProvider {
	
	public ModelSyncActionProvider() {
		super();
	}

	/* (non-Javadoc)
	 * @see org.eclipse.team.ui.mapping.SynchronizationActionProvider#initialize()
	 */
	protected void initialize() {
		super.initialize();
		final ISynchronizePageConfiguration configuration= getSynchronizePageConfiguration();
		// We provide custom handlers that ensure that the MOD files get updated properly
		// when MOE files are merged.
		registerHandler(MERGE_ACTION_ID, new ModelMergeActionHandler(configuration, false));
		registerHandler(OVERWRITE_ACTION_ID, new ModelMergeActionHandler(configuration, true));
		// We can just use the default mark as merged handler
	}
}

Back to the top