/** * 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>Block</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Block#getAtomic <em>Atomic</em>}</li> * <li>{@link com.arm.cmsis.pack.debugseq.debugSeq.Block#getStatements <em>Statements</em>}</li> * </ul> * * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getBlock() * @model * @generated */ public interface Block extends CodeBlock { /** * Returns the value of the '<em><b>Atomic</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Atomic</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Atomic</em>' attribute. * @see #setAtomic(long) * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getBlock_Atomic() * @model * @generated */ long getAtomic(); /** * Sets the value of the '{@link com.arm.cmsis.pack.debugseq.debugSeq.Block#getAtomic <em>Atomic</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Atomic</em>' attribute. * @see #getAtomic() * @generated */ void setAtomic(long value); /** * Returns the value of the '<em><b>Statements</b></em>' containment reference list. * The list contents are of type {@link com.arm.cmsis.pack.debugseq.debugSeq.Statement}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Statements</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>Statements</em>' containment reference list. * @see com.arm.cmsis.pack.debugseq.debugSeq.DebugSeqPackage#getBlock_Statements() * @model containment="true" * @generated */ EList<Statement> getStatements(); } // Block