1 /**2 * <copyright>3 * 4 * Copyright (c) 2004-2005 IBM Corporation and others.5 * All rights reserved. This program and the accompanying materials6 * are made available under the terms of the Eclipse Public License v1.07 * which accompanies this distribution, and is available at8 * http://www.eclipse.org/legal/epl-v10.html9 *10 * Contributors:11 * IBM - Initial API and implementation12 *13 * </copyright>14 *15 * $Id: Ecore2EcoreMappingRoot.java,v 1.4 2005/06/08 06:21:24 nickb Exp $16 */17 package org.eclipse.emf.mapping.ecore2ecore;18 19 20 import org.eclipse.emf.ecore.EPackage;21 import org.eclipse.emf.mapping.MappingRoot;22 23 24 /**25 * <!-- begin-user-doc -->26 * A representation of the model object '<em><b>Mapping Root</b></em>'.27 * <!-- end-user-doc -->28 *29 *30 * @see org.eclipse.emf.mapping.ecore2ecore.Ecore2EcorePackage#getEcore2EcoreMappingRoot()31 * @model32 * @generated33 */34 public interface Ecore2EcoreMappingRoot extends MappingRoot35 {36 EPackage getInputEPackage();37 38 EPackage getOutputEPackage();39 40 } // Ecore2EcoreMappingRoot41