blob: 53ceff48a044a45c9621693e450b4d4689ff12f4 [file] [log] [blame]
/**
* Copyright (c) 2020 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html\n\nContributors:
* Arnault Lapitre (CEA LIST) arnault.lapitre@cea.fr
* - Initial API and Implementation
*/
package org.eclipse.efm.ecore.formalml.statement;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Block Statement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.statement.BlockStatement#getOp <em>Op</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.statement.BlockStatement#getStatement <em>Statement</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getBlockStatement()
* @model
* @generated
*/
public interface BlockStatement extends Statement {
/**
* Returns the value of the '<em><b>Op</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Op</em>' attribute.
* @see #setOp(String)
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getBlockStatement_Op()
* @model
* @generated
*/
String getOp();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.statement.BlockStatement#getOp <em>Op</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Op</em>' attribute.
* @see #getOp()
* @generated
*/
void setOp(String value);
/**
* Returns the value of the '<em><b>Statement</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.efm.ecore.formalml.statement.Statement}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Statement</em>' containment reference list.
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getBlockStatement_Statement()
* @model containment="true"
* @generated
*/
EList<Statement> getStatement();
} // BlockStatement