/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; import org.eclipse.emf.common.util.EList; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>If Statement</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.IfStatement#getIfThenPart <em>If Then Part</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.IfStatement#getElsePart <em>Else Part</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getIfStatement() * @model * @generated */ public interface IfStatement extends MethodContentStatement { /** * Returns the value of the '<em><b>If Then Part</b></em>' containment reference list. * The list contents are of type {@link net.sf.etl.samples.ej.ast.IfThenPart}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>If Then Part</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>If Then Part</em>' containment reference list. * @see net.sf.etl.samples.ej.ast.AstPackage#getIfStatement_IfThenPart() * @model type="net.sf.etl.samples.ej.ast.IfThenPart" containment="true" required="true" * @generated */ EList getIfThenPart(); /** * Returns the value of the '<em><b>Else Part</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Else Part</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>Else Part</em>' containment reference. * @see #setElsePart(MethodBlock) * @see net.sf.etl.samples.ej.ast.AstPackage#getIfStatement_ElsePart() * @model containment="true" * @generated */ MethodBlock getElsePart(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.IfStatement#getElsePart <em>Else Part</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Else Part</em>' containment reference. * @see #getElsePart() * @generated */ void setElsePart(MethodBlock value); } // IfStatement