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.
 
 
 

70 lines
2.5 KiB

/**
*/
package com.irtsaintexupery.pseim.mapping;
import com.irtsaintexupery.pseim.seim.GraphElement;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Graph Element Mapping</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link com.irtsaintexupery.pseim.mapping.GraphElementMapping#getModelGraphElement <em>Model Graph Element</em>}</li>
* <li>{@link com.irtsaintexupery.pseim.mapping.GraphElementMapping#getPatternGraphElement <em>Pattern Graph Element</em>}</li>
* </ul>
*
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getGraphElementMapping()
* @model
* @generated
*/
public interface GraphElementMapping extends EObject {
/**
* Returns the value of the '<em><b>Model Graph Element</b></em>' reference list.
* The list contents are of type {@link com.irtsaintexupery.pseim.seim.GraphElement}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Model Graph Element</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 Graph Element</em>' reference list.
* @see com.irtsaintexupery.pseim.mapping.MappingPackage#getGraphElementMapping_ModelGraphElement()
* @model ordered="false"
* @generated
*/
EList<GraphElement> getModelGraphElement();
/**
* Returns the value of the '<em><b>Pattern Graph Element</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Pattern Graph Element</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 Graph Element</em>' 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 <em>Pattern Graph Element</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Pattern Graph Element</em>' reference.
* @see #getPatternGraphElement()
* @generated
*/
void setPatternGraphElement(GraphElement value);
} // GraphElementMapping