/** */ package com.irtsaintexupery.pseim.mapping; import com.irtsaintexupery.pseim.seim.GraphElement; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Graph Element Mapping'. * * *

* The following features are supported: *

* * * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getGraphElementMapping() * @model * @generated */ public interface GraphElementMapping extends EObject { /** * Returns the value of the 'Model Graph Element' reference list. * The list contents are of type {@link com.irtsaintexupery.pseim.seim.GraphElement}. * *

* If the meaning of the 'Model Graph Element' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Model Graph Element' reference list. * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getGraphElementMapping_ModelGraphElement() * @model ordered="false" * @generated */ EList getModelGraphElement(); /** * Returns the value of the 'Pattern Graph Element' reference. * *

* If the meaning of the 'Pattern Graph Element' reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Pattern Graph Element' reference. * @see #setPatternGraphElement(GraphElement) * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getGraphElementMapping_PatternGraphElement() * @model required="true" * @generated */ GraphElement getPatternGraphElement(); /** * Sets the value of the '{@link com.irtsaintexupery.pseim.mapping.GraphElementMapping#getPatternGraphElement Pattern Graph Element}' reference. * * * @param value the new value of the 'Pattern Graph Element' reference. * @see #getPatternGraphElement() * @generated */ void setPatternGraphElement(GraphElement value); } // GraphElementMapping