blob: 50ea3ad17e22e04a1a9429b80aad4b206fee6b8d [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 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.compare.internal;
import java.util.ResourceBundle;
import org.eclipse.compare.*;
/**
* Toggles the <code>ICompareConfiguration.SHOW_PSEUDO_CONFLICTS</code> property of an
* <code>ICompareConfiguration</code>.
*/
public class ShowPseudoConflicts extends ChangePropertyAction {
public ShowPseudoConflicts(ResourceBundle bundle, CompareConfiguration cc) {
super(bundle, cc, "action.ShowPseudoConflicts.", CompareConfiguration.SHOW_PSEUDO_CONFLICTS); //$NON-NLS-1$
}
}