blob: 4943fb8a7c1bc4550eb93a33ebe0df15cbb18a26 [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.efm.ecore.formalml.expression.Expression;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Observer Statement</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.efm.ecore.formalml.statement.ObserverStatement#getContext <em>Context</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.statement.ObserverStatement#getStatement <em>Statement</em>}</li>
* <li>{@link org.eclipse.efm.ecore.formalml.statement.ObserverStatement#getPostCondition <em>Post Condition</em>}</li>
* </ul>
*
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getObserverStatement()
* @model
* @generated
*/
public interface ObserverStatement extends Statement {
/**
* Returns the value of the '<em><b>Context</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Context</em>' containment reference.
* @see #setContext(Expression)
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getObserverStatement_Context()
* @model containment="true"
* @generated
*/
Expression getContext();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.statement.ObserverStatement#getContext <em>Context</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Context</em>' containment reference.
* @see #getContext()
* @generated
*/
void setContext(Expression value);
/**
* Returns the value of the '<em><b>Statement</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Statement</em>' containment reference.
* @see #setStatement(Statement)
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getObserverStatement_Statement()
* @model containment="true" required="true"
* @generated
*/
Statement getStatement();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.statement.ObserverStatement#getStatement <em>Statement</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Statement</em>' containment reference.
* @see #getStatement()
* @generated
*/
void setStatement(Statement value);
/**
* Returns the value of the '<em><b>Post Condition</b></em>' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Post Condition</em>' containment reference.
* @see #setPostCondition(Expression)
* @see org.eclipse.efm.ecore.formalml.statement.StatementPackage#getObserverStatement_PostCondition()
* @model containment="true" required="true"
* @generated
*/
Expression getPostCondition();
/**
* Sets the value of the '{@link org.eclipse.efm.ecore.formalml.statement.ObserverStatement#getPostCondition <em>Post Condition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Post Condition</em>' containment reference.
* @see #getPostCondition()
* @generated
*/
void setPostCondition(Expression value);
} // ObserverStatement