/** */ package fr.inria.diverse.melange.metamodel.melange; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Import</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link fr.inria.diverse.melange.metamodel.melange.Import#getEcoreUri <em>Ecore Uri</em>}</li> * <li>{@link fr.inria.diverse.melange.metamodel.melange.Import#getGenmodelUris <em>Genmodel Uris</em>}</li> * <li>{@link fr.inria.diverse.melange.metamodel.melange.Import#getMappingRules <em>Mapping Rules</em>}</li> * </ul> * * @see fr.inria.diverse.melange.metamodel.melange.MelangePackage#getImport() * @model * @generated */ public interface Import extends Operator { /** * Returns the value of the '<em><b>Ecore Uri</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Ecore Uri</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Ecore Uri</em>' attribute. * @see #setEcoreUri(String) * @see fr.inria.diverse.melange.metamodel.melange.MelangePackage#getImport_EcoreUri() * @model * @generated */ String getEcoreUri(); /** * Sets the value of the '{@link fr.inria.diverse.melange.metamodel.melange.Import#getEcoreUri <em>Ecore Uri</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Ecore Uri</em>' attribute. * @see #getEcoreUri() * @generated */ void setEcoreUri(String value); /** * Returns the value of the '<em><b>Genmodel Uris</b></em>' attribute list. * The list contents are of type {@link java.lang.String}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Genmodel Uris</em>' attribute list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Genmodel Uris</em>' attribute list. * @see fr.inria.diverse.melange.metamodel.melange.MelangePackage#getImport_GenmodelUris() * @model * @generated */ EList<String> getGenmodelUris(); /** * Returns the value of the '<em><b>Mapping Rules</b></em>' containment reference list. * The list contents are of type {@link fr.inria.diverse.melange.metamodel.melange.PackageBinding}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mapping Rules</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Mapping Rules</em>' containment reference list. * @see fr.inria.diverse.melange.metamodel.melange.MelangePackage#getImport_MappingRules() * @model containment="true" * @generated */ EList<PackageBinding> getMappingRules(); } // Import