/******************************************************************************* * Copyright (c) 2010 Martin Schnabel <mb0@mb0.org>. * 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 ******************************************************************************/ package org.axdt.as3.model; import org.axdt.avm.model.AvmParameter; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>As3 Catch Clause</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.axdt.as3.model.As3CatchClause#getError <em>Error</em>}</li> * <li>{@link org.axdt.as3.model.As3CatchClause#getBlock <em>Block</em>}</li> * </ul> * </p> * * @see org.axdt.as3.As3EPackage#getAs3CatchClause() * @generated */ public interface As3CatchClause extends EObject { /** * Returns the value of the '<em><b>Error</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Error</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>Error</em>' containment reference. * @see #setError(AvmParameter) * @see org.axdt.as3.As3EPackage#getAs3CatchClause_Error() * @generated */ AvmParameter getError(); /** * Sets the value of the '{@link org.axdt.as3.model.As3CatchClause#getError <em>Error</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Error</em>' containment reference. * @see #getError() * @generated */ void setError(AvmParameter value); /** * Returns the value of the '<em><b>Block</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Block</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>Block</em>' containment reference. * @see #setBlock(As3Block) * @see org.axdt.as3.As3EPackage#getAs3CatchClause_Block() * @generated */ As3Block getBlock(); /** * Sets the value of the '{@link org.axdt.as3.model.As3CatchClause#getBlock <em>Block</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Block</em>' containment reference. * @see #getBlock() * @generated */ void setBlock(As3Block value); } // As3CatchClause