/** * <copyright> * </copyright> * * $Id: CatchExpImpl.java,v 1.2 2009/01/25 23:11:18 radvorak Exp $ */ package org.eclipse.m2m.qvt.oml.emof.ImperativeOCL.impl; import java.util.Collection; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.EObjectResolvingEList; import org.eclipse.emf.ecore.util.InternalEList; import org.eclipse.m2m.qvt.oml.emof.ImperativeOCL.CatchExp; import org.eclipse.m2m.qvt.oml.emof.ImperativeOCL.ImperativeOCLPackage; import org.eclipse.qvt.declarative.emof.EMOF.Type; import org.eclipse.qvt.declarative.emof.EssentialOCL.OclExpression; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Catch Exp</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.m2m.qvt.oml.emof.ImperativeOCL.impl.CatchExpImpl#getBody <em>Body</em>}</li> * <li>{@link org.eclipse.m2m.qvt.oml.emof.ImperativeOCL.impl.CatchExpImpl#getException <em>Exception</em>}</li> * </ul> * </p> * * @generated */ public class CatchExpImpl extends ImperativeExpressionImpl implements CatchExp { /** * The cached value of the '{@link #getBody() <em>Body</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getBody() * @generated * @ordered */ protected EList<OclExpression> body; /** * The cached value of the '{@link #getException() <em>Exception</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getException() * @generated * @ordered */ protected EList<Type> exception; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CatchExpImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ImperativeOCLPackage.Literals.CATCH_EXP; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<OclExpression> getBody() { if (body == null) { body = new EObjectContainmentEList<OclExpression>(OclExpression.class, this, ImperativeOCLPackage.CATCH_EXP__BODY); } return body; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Type> getException() { if (exception == null) { exception = new EObjectResolvingEList<Type>(Type.class, this, ImperativeOCLPackage.CATCH_EXP__EXCEPTION); } return exception; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ImperativeOCLPackage.CATCH_EXP__BODY: return ((InternalEList<?>)getBody()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ImperativeOCLPackage.CATCH_EXP__BODY: return getBody(); case ImperativeOCLPackage.CATCH_EXP__EXCEPTION: return getException(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ImperativeOCLPackage.CATCH_EXP__BODY: getBody().clear(); getBody().addAll((Collection<? extends OclExpression>)newValue); return; case ImperativeOCLPackage.CATCH_EXP__EXCEPTION: getException().clear(); getException().addAll((Collection<? extends Type>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ImperativeOCLPackage.CATCH_EXP__BODY: getBody().clear(); return; case ImperativeOCLPackage.CATCH_EXP__EXCEPTION: getException().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ImperativeOCLPackage.CATCH_EXP__BODY: return body != null && !body.isEmpty(); case ImperativeOCLPackage.CATCH_EXP__EXCEPTION: return exception != null && !exception.isEmpty(); } return super.eIsSet(featureID); } } //CatchExpImpl