/** * <copyright> * </copyright> * * $Id$ */ package net.sf.etl.samples.ej.ast; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Catch Part</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.etl.samples.ej.ast.CatchPart#getSpecification <em>Specification</em>}</li> * <li>{@link net.sf.etl.samples.ej.ast.CatchPart#getBody <em>Body</em>}</li> * </ul> * </p> * * @see net.sf.etl.samples.ej.ast.AstPackage#getCatchPart() * @model * @generated */ public interface CatchPart extends EJBase { /** * Returns the value of the '<em><b>Specification</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Specification</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>Specification</em>' containment reference. * @see #setSpecification(Parameter) * @see net.sf.etl.samples.ej.ast.AstPackage#getCatchPart_Specification() * @model containment="true" resolveProxies="false" * @generated */ Parameter getSpecification(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.CatchPart#getSpecification <em>Specification</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Specification</em>' containment reference. * @see #getSpecification() * @generated */ void setSpecification(Parameter value); /** * Returns the value of the '<em><b>Body</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Body</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>Body</em>' containment reference. * @see #setBody(MethodBlock) * @see net.sf.etl.samples.ej.ast.AstPackage#getCatchPart_Body() * @model containment="true" resolveProxies="false" * @generated */ MethodBlock getBody(); /** * Sets the value of the '{@link net.sf.etl.samples.ej.ast.CatchPart#getBody <em>Body</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Body</em>' containment reference. * @see #getBody() * @generated */ void setBody(MethodBlock value); } // CatchPart