/** * 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>Control</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getIf <em>If</em>}</li> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getWhile <em>While</em>}</li> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getTimeout <em>Timeout</em>}</li> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getCodeblocks <em>Codeblocks</em>}</li> * </ul> * * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getControl() * @model * @generated */ public interface Control extends CodeBlock { /** * Returns the value of the '<em><b>If</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>If</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>If</em>' containment reference. * @see #setIf(Expression) * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getControl_If() * @model containment="true" * @generated */ Expression getIf(); /** * Sets the value of the '{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getIf <em>If</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>If</em>' containment reference. * @see #getIf() * @generated */ void setIf(Expression value); /** * Returns the value of the '<em><b>While</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>While</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>While</em>' containment reference. * @see #setWhile(Expression) * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getControl_While() * @model containment="true" * @generated */ Expression getWhile(); /** * Sets the value of the '{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getWhile <em>While</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>While</em>' containment reference. * @see #getWhile() * @generated */ void setWhile(Expression value); /** * Returns the value of the '<em><b>Timeout</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Timeout</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Timeout</em>' attribute. * @see #setTimeout(long) * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getControl_Timeout() * @model * @generated */ long getTimeout(); /** * Sets the value of the '{@link com.arm.cmsis.pack.debugseq.debugSeq.Control#getTimeout <em>Timeout</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Timeout</em>' attribute. * @see #getTimeout() * @generated */ void setTimeout(long value); /** * Returns the value of the '<em><b>Codeblocks</b></em>' containment reference list. * The list contents are of type {@link com.arm.cmsis.pack.debugseq.debugSeq.CodeBlock}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Codeblocks</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>Codeblocks</em>' containment reference list. * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getControl_Codeblocks() * @model containment="true" * @generated */ EList<CodeBlock> getCodeblocks(); } // Control