/** * <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>Try Statement</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.TryStatement#getFinallyPart <em>Finally Part</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.TryStatement#getCatchPart <em>Catch Part</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getTryStatement() * @model * @generated */ public interface TryStatement extends ScopeStatement { /** * Returns the value of the '<em><b>Finally Part</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Finally 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>Finally Part</em>' containment reference. * @see #setFinallyPart(MethodBlock) * @see net.sf.etl.samples.ej.ast.AstPackage#getTryStatement_FinallyPart() * @model containment="true" resolveProxies="false" * @generated */ MethodBlock getFinallyPart(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.TryStatement#getFinallyPart <em>Finally Part</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Finally Part</em>' containment reference. * @see #getFinallyPart() * @generated */ void setFinallyPart(MethodBlock value); /** * Returns the value of the '<em><b>Catch Part</b></em>' containment reference list. * The list contents are of type {@link net.sf.etl.samples.ej.ast.CatchPart}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Catch 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>Catch Part</em>' containment reference list. * @see net.sf.etl.samples.ej.ast.AstPackage#getTryStatement_CatchPart() * @model type="net.sf.etl.samples.ej.ast.CatchPart" containment="true" * @generated */ EList getCatchPart(); } // TryStatement