blob: a3e2b665a8f79bc08e3bee5eb81f5ddb6ebeed79 [file] [log] [blame]
/*******************************************************************************
* Copyright 2011 Chair for Applied Software Engineering,
* Technische Universitaet Muenchen.
* All rights reserved. This program and the accompanying materials
* are made available under the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
******************************************************************************/
package org.eclipse.emf.emfstore.client.model.changeTracking.merging.util;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.emfstore.common.observer.PrioritizedIObserver;
/**
*
*
* @author ovonwesen
*
*/
public interface MergeLabelProvider extends PrioritizedIObserver {
/**
*
* {@inheritDoc}
*
* @see org.eclipse.emf.emfstore.common.observer.PrioritizedIObserver#getPriority()
*/
int getPriority();
/**
* Returns a textual description of the given model element.
*
* @param modelElement
* the model element whose description is requested
* @return a textual description for the given model element
*/
String getText(EObject modelElement);
/**
* Disposes the label provider.
*/
void dispose();
}