blob: 1ab2e2991139eccbcfa5b2132cddbd9c0475515e [file] [log] [blame]
/*******************************************************************************
* 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
}
}