Loading plugins/org.etsi.mts.tdl.model/.gitignore +1 −1 Original line number Diff line number Diff line /src-gen plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/Action.java 0 → 100644 +59 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.etsi.mts.tdl.Action#getBody <em>Body</em>}</li> * <li>{@link org.etsi.mts.tdl.Action#getFormalParameter <em>Formal Parameter</em>}</li> * </ul> * * @see org.etsi.mts.tdl.tdlPackage#getAction() * @model * @generated */ public interface Action extends MappableDataElement { /** * Returns the value of the '<em><b>Body</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Body</em>' attribute. * @see #setBody(String) * @see org.etsi.mts.tdl.tdlPackage#getAction_Body() * @model * @generated */ String getBody(); /** * Sets the value of the '{@link org.etsi.mts.tdl.Action#getBody <em>Body</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Body</em>' attribute. * @see #getBody() * @generated */ void setBody(String value); /** * Returns the value of the '<em><b>Formal Parameter</b></em>' containment reference list. * The list contents are of type {@link org.etsi.mts.tdl.FormalParameter}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Formal Parameter</em>' containment reference list. * @see org.etsi.mts.tdl.tdlPackage#getAction_FormalParameter() * @model containment="true" * @generated */ EList<FormalParameter> getFormalParameter(); } // Action plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/ActionBehaviour.java 0 → 100644 +56 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action Behaviour</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.etsi.mts.tdl.ActionBehaviour#getComponentInstance <em>Component Instance</em>}</li> * </ul> * * @see org.etsi.mts.tdl.tdlPackage#getActionBehaviour() * @model abstract="true" * @generated */ public interface ActionBehaviour extends AtomicBehaviour { /** * Returns the value of the '<em><b>Component Instance</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Component Instance</em>' reference. * @see #setComponentInstance(ComponentInstance) * @see org.etsi.mts.tdl.tdlPackage#getActionBehaviour_ComponentInstance() * @model * @generated */ ComponentInstance getComponentInstance(); /** * Sets the value of the '{@link org.etsi.mts.tdl.ActionBehaviour#getComponentInstance <em>Component Instance</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Component Instance</em>' reference. * @see #getComponentInstance() * @generated */ void setComponentInstance(ComponentInstance value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot body='\n if self.getParentTestDescription()->exists(td | td.isLocallyOrdered) and self.container().oclIsKindOf(Block) then (\n if not self.componentInstance.oclIsUndefined() then\n OrderedSet { self.componentInstance }\n else\n self.container().oclAsType(Block).getParticipatingComponentsExcluding(self)->asOrderedSet()\n endif\n ) else\n self.getParentTestDescription().testConfiguration.componentInstance->asOrderedSet()\n endif\n '" * annotation="http://www.eclipse.org/OCL/Collection nullFree='false'" * @generated */ EList<ComponentInstance> getParticipatingComponents(); } // ActionBehaviour plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/ActionReference.java 0 → 100644 +59 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action Reference</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.etsi.mts.tdl.ActionReference#getAction <em>Action</em>}</li> * <li>{@link org.etsi.mts.tdl.ActionReference#getArgument <em>Argument</em>}</li> * </ul> * * @see org.etsi.mts.tdl.tdlPackage#getActionReference() * @model * @generated */ public interface ActionReference extends ActionBehaviour { /** * Returns the value of the '<em><b>Action</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Action</em>' reference. * @see #setAction(Action) * @see org.etsi.mts.tdl.tdlPackage#getActionReference_Action() * @model required="true" * @generated */ Action getAction(); /** * Sets the value of the '{@link org.etsi.mts.tdl.ActionReference#getAction <em>Action</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Action</em>' reference. * @see #getAction() * @generated */ void setAction(Action value); /** * Returns the value of the '<em><b>Argument</b></em>' containment reference list. * The list contents are of type {@link org.etsi.mts.tdl.ParameterBinding}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Argument</em>' containment reference list. * @see org.etsi.mts.tdl.tdlPackage#getActionReference_Argument() * @model containment="true" * @generated */ EList<ParameterBinding> getArgument(); } // ActionReference plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/AlternativeBehaviour.java 0 → 100644 +17 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Alternative Behaviour</b></em>'. * <!-- end-user-doc --> * * * @see org.etsi.mts.tdl.tdlPackage#getAlternativeBehaviour() * @model * @generated */ public interface AlternativeBehaviour extends MultipleCombinedBehaviour { } // AlternativeBehaviour Loading
plugins/org.etsi.mts.tdl.model/.gitignore +1 −1 Original line number Diff line number Diff line /src-gen
plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/Action.java 0 → 100644 +59 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.etsi.mts.tdl.Action#getBody <em>Body</em>}</li> * <li>{@link org.etsi.mts.tdl.Action#getFormalParameter <em>Formal Parameter</em>}</li> * </ul> * * @see org.etsi.mts.tdl.tdlPackage#getAction() * @model * @generated */ public interface Action extends MappableDataElement { /** * Returns the value of the '<em><b>Body</b></em>' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Body</em>' attribute. * @see #setBody(String) * @see org.etsi.mts.tdl.tdlPackage#getAction_Body() * @model * @generated */ String getBody(); /** * Sets the value of the '{@link org.etsi.mts.tdl.Action#getBody <em>Body</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Body</em>' attribute. * @see #getBody() * @generated */ void setBody(String value); /** * Returns the value of the '<em><b>Formal Parameter</b></em>' containment reference list. * The list contents are of type {@link org.etsi.mts.tdl.FormalParameter}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Formal Parameter</em>' containment reference list. * @see org.etsi.mts.tdl.tdlPackage#getAction_FormalParameter() * @model containment="true" * @generated */ EList<FormalParameter> getFormalParameter(); } // Action
plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/ActionBehaviour.java 0 → 100644 +56 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action Behaviour</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.etsi.mts.tdl.ActionBehaviour#getComponentInstance <em>Component Instance</em>}</li> * </ul> * * @see org.etsi.mts.tdl.tdlPackage#getActionBehaviour() * @model abstract="true" * @generated */ public interface ActionBehaviour extends AtomicBehaviour { /** * Returns the value of the '<em><b>Component Instance</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Component Instance</em>' reference. * @see #setComponentInstance(ComponentInstance) * @see org.etsi.mts.tdl.tdlPackage#getActionBehaviour_ComponentInstance() * @model * @generated */ ComponentInstance getComponentInstance(); /** * Sets the value of the '{@link org.etsi.mts.tdl.ActionBehaviour#getComponentInstance <em>Component Instance</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Component Instance</em>' reference. * @see #getComponentInstance() * @generated */ void setComponentInstance(ComponentInstance value); /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @model kind="operation" * annotation="http://www.eclipse.org/emf/2002/Ecore/OCL/Pivot body='\n if self.getParentTestDescription()->exists(td | td.isLocallyOrdered) and self.container().oclIsKindOf(Block) then (\n if not self.componentInstance.oclIsUndefined() then\n OrderedSet { self.componentInstance }\n else\n self.container().oclAsType(Block).getParticipatingComponentsExcluding(self)->asOrderedSet()\n endif\n ) else\n self.getParentTestDescription().testConfiguration.componentInstance->asOrderedSet()\n endif\n '" * annotation="http://www.eclipse.org/OCL/Collection nullFree='false'" * @generated */ EList<ComponentInstance> getParticipatingComponents(); } // ActionBehaviour
plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/ActionReference.java 0 → 100644 +59 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Action Reference</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.etsi.mts.tdl.ActionReference#getAction <em>Action</em>}</li> * <li>{@link org.etsi.mts.tdl.ActionReference#getArgument <em>Argument</em>}</li> * </ul> * * @see org.etsi.mts.tdl.tdlPackage#getActionReference() * @model * @generated */ public interface ActionReference extends ActionBehaviour { /** * Returns the value of the '<em><b>Action</b></em>' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Action</em>' reference. * @see #setAction(Action) * @see org.etsi.mts.tdl.tdlPackage#getActionReference_Action() * @model required="true" * @generated */ Action getAction(); /** * Sets the value of the '{@link org.etsi.mts.tdl.ActionReference#getAction <em>Action</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Action</em>' reference. * @see #getAction() * @generated */ void setAction(Action value); /** * Returns the value of the '<em><b>Argument</b></em>' containment reference list. * The list contents are of type {@link org.etsi.mts.tdl.ParameterBinding}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the value of the '<em>Argument</em>' containment reference list. * @see org.etsi.mts.tdl.tdlPackage#getActionReference_Argument() * @model containment="true" * @generated */ EList<ParameterBinding> getArgument(); } // ActionReference
plugins/org.etsi.mts.tdl.model/src-gen/org/etsi/mts/tdl/AlternativeBehaviour.java 0 → 100644 +17 −0 Original line number Diff line number Diff line /** */ package org.etsi.mts.tdl; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Alternative Behaviour</b></em>'. * <!-- end-user-doc --> * * * @see org.etsi.mts.tdl.tdlPackage#getAlternativeBehaviour() * @model * @generated */ public interface AlternativeBehaviour extends MultipleCombinedBehaviour { } // AlternativeBehaviour