mirror of
http://172.16.200.102/MOISE/Pattern-Instanciation-On-System-Engineering-Model.git
synced 2025-12-16 08:13:57 +01:00
71 lines
2.5 KiB
Java
71 lines
2.5 KiB
Java
/**
|
|
*/
|
|
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
|