blob: 3e0519b55b60ca7507c370aba27b174ccffdddaf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.sirius.synchronizer;
import org.eclipse.emf.ecore.EObject;
/**
* Contract for a class representing an element which "might" get created in the
* output model.
*
* @author Cedric Brun <cedric.brun@obeo.fr>
*
*/
public interface OutputDescriptor {
int getIndex();
EObject getSourceElement();
Mapping getMapping();
}