/** * generated by Xtext 2.23.0 */ package fr.n7.pDL1; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Process'. * * *

* The following features are supported: *

* * * @see fr.n7.pDL1.PDL1Package#getProcess() * @model * @generated */ public interface Process extends EObject { /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see fr.n7.pDL1.PDL1Package#getProcess_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link fr.n7.pDL1.Process#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Process Elements' containment reference list. * The list contents are of type {@link fr.n7.pDL1.ProcessElement}. * * * @return the value of the 'Process Elements' containment reference list. * @see fr.n7.pDL1.PDL1Package#getProcess_ProcessElements() * @model containment="true" * @generated */ EList getProcessElements(); } // Process