/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Assert Statement</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.AssertStatement#getTest <em>Test</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.AssertStatement#getMessage <em>Message</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getAssertStatement() * @model * @generated */ public interface AssertStatement extends MethodContentStatement { /** * Returns the value of the '<em><b>Test</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Test</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>Test</em>' containment reference. * @see #setTest(Expression) * @see net.sf.etl.samples.ej.ast.AstPackage#getAssertStatement_Test() * @model containment="true" resolveProxies="false" * @generated */ Expression getTest(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.AssertStatement#getTest <em>Test</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Test</em>' containment reference. * @see #getTest() * @generated */ void setTest(Expression value); /** * Returns the value of the '<em><b>Message</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Message</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>Message</em>' containment reference. * @see #setMessage(Expression) * @see net.sf.etl.samples.ej.ast.AstPackage#getAssertStatement_Message() * @model containment="true" resolveProxies="false" * @generated */ Expression getMessage(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.AssertStatement#getMessage <em>Message</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Message</em>' containment reference. * @see #getMessage() * @generated */ void setMessage(Expression value); } // AssertStatement