This project is a demonstrator of pattern instanciation on system engineering model (pseim), made by the MOISE project. It contains the metamodel of the pseim, graphical and textual editors, formal verification models (event-B) and examples.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
5.0 KiB

/**
*/
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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Pattern Application</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getCardinalityValues <em>Cardinality Values</em>}</li>
* <li>{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getPortMapping <em>Port Mapping</em>}</li>
* <li>{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getPattern <em>Pattern</em>}</li>
* <li>{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getModelElement <em>Model Element</em>}</li>
* <li>{@link com.irtsaintexupery.pseim.mapping.PatternApplication#getModel <em>Model</em>}</li>
* </ul>
*
* @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 '<em><b>Cardinality Values</b></em>' containment reference list.
* The list contents are of type {@link com.irtsaintexupery.pseim.mapping.CardinalityValue}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Cardinality Values</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>Cardinality Values</em>' containment reference list.
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_CardinalityValues()
* @model containment="true"
* @generated
*/
EList<CardinalityValue> getCardinalityValues();
/**
* Returns the value of the '<em><b>Port Mapping</b></em>' containment reference list.
* The list contents are of type {@link com.irtsaintexupery.pseim.mapping.PortMapping}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Port Mapping</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>Port Mapping</em>' containment reference list.
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_PortMapping()
* @model containment="true"
* @generated
*/
EList<PortMapping> getPortMapping();
/**
* Returns the value of the '<em><b>Pattern</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Pattern</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Pattern</em>' 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 <em>Pattern</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Pattern</em>' reference.
* @see #getPattern()
* @generated
*/
void setPattern(Pattern value);
/**
* Returns the value of the '<em><b>Model Element</b></em>' containment reference list.
* The list contents are of type {@link com.irtsaintexupery.pseim.mapping.GraphElementMapping}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model Element</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>Model Element</em>' containment reference list.
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getPatternApplication_ModelElement()
* @model containment="true" required="true"
* @generated
*/
EList<GraphElementMapping> getModelElement();
/**
* Returns the value of the '<em><b>Model</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Model</em>' 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 <em>Model</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Model</em>' reference.
* @see #getModel()
* @generated
*/
void setModel(Model value);
} // PatternApplication