blob: 92b5ef50e2f2673ad024bcbc60d2dcc3ac5fc9ca [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.compare.diagram.ide.ui.internal.accessor;
/**
* Constants used in accessors for diagrams comparison.
*
* @author <a href="mailto:cedric.notot@obeo.fr">Cedric Notot</a>
*/
public final class DiagramContentMergeViewerConstants {
/** DIFF_NODE_TYPE. */
public static final String DIFF_NODE_TYPE = "diagramcompare_diff"; //$NON-NLS-1$
/** MATCH_NODE_TYPE. */
public static final String MATCH_NODE_TYPE = "diagramcompare_match"; //$NON-NLS-1$
/**
* Constructor.
*/
private DiagramContentMergeViewerConstants() {
}
}