/** * generated by Xtext 2.10.0 */ package com.arm.cmsis.pack.debugseq.debugSeq; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Message</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Message#getType <em>Type</em>}</li> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Message#getFormat <em>Format</em>}</li> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Message#getParameters <em>Parameters</em>}</li> * </ul> * * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getMessage() * @model * @generated */ public interface Message extends Expression { /** * Returns the value of the '<em><b>Type</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Type</em>' containment reference. * @see #setType(Expression) * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getMessage_Type() * @model containment="true" * @generated */ Expression getType(); /** * Sets the value of the '{@link com.arm.cmsis.pack.debugseq.debugSeq.Message#getType <em>Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' containment reference. * @see #getType() * @generated */ void setType(Expression value); /** * Returns the value of the '<em><b>Format</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Format</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Format</em>' attribute. * @see #setFormat(String) * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getMessage_Format() * @model * @generated */ String getFormat(); /** * Sets the value of the '{@link com.arm.cmsis.pack.debugseq.debugSeq.Message#getFormat <em>Format</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Format</em>' attribute. * @see #getFormat() * @generated */ void setFormat(String value); /** * Returns the value of the '<em><b>Parameters</b></em>' containment reference list. * The list contents are of type {@link com.arm.cmsis.pack.debugseq.debugSeq.Parameter}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameters</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>Parameters</em>' containment reference list. * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getMessage_Parameters() * @model containment="true" * @generated */ EList<Parameter> getParameters(); } // Message