/** */ package org.eclipse.qvto.examples.xtext.imperativeoclcs; import org.eclipse.emf.common.util.EList; import org.eclipse.ocl.xtext.basecs.TypedRefCS; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Catch Exp CS</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.eclipse.qvto.examples.xtext.imperativeoclcs.CatchExpCS#getOwnedExceptionRefs <em>Owned Exception Refs</em>}</li> * <li>{@link org.eclipse.qvto.examples.xtext.imperativeoclcs.CatchExpCS#getVarName <em>Var Name</em>}</li> * </ul> * * @see org.eclipse.qvto.examples.xtext.imperativeoclcs.ImperativeOCLCSPackage#getCatchExpCS() * @model * @generated */ public interface CatchExpCS extends ExpressionBlockCS { /** * Returns the value of the '<em><b>Owned Exception Refs</b></em>' containment reference list. * The list contents are of type {@link org.eclipse.ocl.xtext.basecs.TypedRefCS}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Owned Exception Refs</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>Owned Exception Refs</em>' containment reference list. * @see org.eclipse.qvto.examples.xtext.imperativeoclcs.ImperativeOCLCSPackage#getCatchExpCS_OwnedExceptionRefs() * @model containment="true" * @generated */ EList<TypedRefCS> getOwnedExceptionRefs(); /** * Returns the value of the '<em><b>Var Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Var Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Var Name</em>' attribute. * @see #setVarName(String) * @see org.eclipse.qvto.examples.xtext.imperativeoclcs.ImperativeOCLCSPackage#getCatchExpCS_VarName() * @model * @generated */ String getVarName(); /** * Sets the value of the '{@link org.eclipse.qvto.examples.xtext.imperativeoclcs.CatchExpCS#getVarName <em>Var Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Var Name</em>' attribute. * @see #getVarName() * @generated */ void setVarName(String value); } // CatchExpCS