/** */ package com.irtsaintexupery.pseim.mapping; import com.irtsaintexupery.pseim.pseim.Pattern; import com.irtsaintexupery.pseim.seim.Model; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Pattern Application'. * * *

* The following features are supported: *

* * * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication() * @model annotation="http://www.eclipse.org/emf/2002/Ecore constraints='InvariantName'" * annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot InvariantName='true'" * @generated */ public interface PatternApplication extends EObject { /** * Returns the value of the 'Cardinality Values' containment reference list. * The list contents are of type {@link com.irtsaintexupery.pseim.mapping.CardinalityValue}. * *

* If the meaning of the 'Cardinality Values' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Cardinality Values' containment reference list. * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_CardinalityValues() * @model containment="true" * @generated */ EList getCardinalityValues(); /** * Returns the value of the 'Port Mapping' containment reference list. * The list contents are of type {@link com.irtsaintexupery.pseim.mapping.PortMapping}. * *

* If the meaning of the 'Port Mapping' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Port Mapping' containment reference list. * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_PortMapping() * @model containment="true" * @generated */ EList getPortMapping(); /** * Returns the value of the 'Pattern' reference. * *

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

* * @return the value of the 'Pattern' reference. * @see #setPattern(Pattern) * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_Pattern() * @model required="true" * @generated */ Pattern getPattern(); /** * Sets the value of the '{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getPattern Pattern}' reference. * * * @param value the new value of the 'Pattern' reference. * @see #getPattern() * @generated */ void setPattern(Pattern value); /** * Returns the value of the 'Model Element' containment reference list. * The list contents are of type {@link com.irtsaintexupery.pseim.mapping.GraphElementMapping}. * *

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

* * @return the value of the 'Model Element' containment reference list. * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_ModelElement() * @model containment="true" required="true" * @generated */ EList getModelElement(); /** * Returns the value of the 'Model' reference. * *

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

* * @return the value of the 'Model' reference. * @see #setModel(Model) * @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_Model() * @model required="true" * @generated */ Model getModel(); /** * Sets the value of the '{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getModel Model}' reference. * * * @param value the new value of the 'Model' reference. * @see #getModel() * @generated */ void setModel(Model value); } // PatternApplication