blob: 85126300f4aaa3dbd77c615574d44a10ab7b0861 [file] [log] [blame]
/**
* <copyright>
* Copyright (c) 2008, 2018 Open Canarias S.L. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* A. Sanchez-Barbudo - initial API and implementation
* </copyright>
*
* $Id: TryExpImpl.java,v 1.3 2009/02/06 15:47:30 radvorak Exp $
*/
package org.eclipse.m2m.qvt.oml.ecore.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.InternalEList;
import org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.CatchExp;
import org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.ImperativeOCLPackage;
import org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.TryExp;
import org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.util.ImperativeOCLVisitor;
import org.eclipse.ocl.ecore.OCLExpression;
import org.eclipse.ocl.utilities.Visitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Try Exp</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.impl.TryExpImpl#getExceptClause <em>Except Clause</em>}</li>
* <li>{@link org.eclipse.m2m.qvt.oml.ecore.ImperativeOCL.impl.TryExpImpl#getTryBody <em>Try Body</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class TryExpImpl extends ImperativeExpressionImpl implements TryExp {
/**
* The cached value of the '{@link #getExceptClause() <em>Except Clause</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getExceptClause()
* @generated
* @ordered
*/
protected EList<CatchExp> exceptClause;
/**
* The cached value of the '{@link #getTryBody() <em>Try Body</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTryBody()
* @generated
* @ordered
*/
protected EList<OCLExpression> tryBody;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected TryExpImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return ImperativeOCLPackage.Literals.TRY_EXP;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<CatchExp> getExceptClause() {
if (exceptClause == null) {
exceptClause = new EObjectContainmentEList<CatchExp>(CatchExp.class, this, ImperativeOCLPackage.TRY_EXP__EXCEPT_CLAUSE);
}
return exceptClause;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<OCLExpression> getTryBody() {
if (tryBody == null) {
tryBody = new EObjectContainmentEList<OCLExpression>(OCLExpression.class, this, ImperativeOCLPackage.TRY_EXP__TRY_BODY);
}
return tryBody;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case ImperativeOCLPackage.TRY_EXP__EXCEPT_CLAUSE:
return ((InternalEList<?>)getExceptClause()).basicRemove(otherEnd, msgs);
case ImperativeOCLPackage.TRY_EXP__TRY_BODY:
return ((InternalEList<?>)getTryBody()).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.TRY_EXP__EXCEPT_CLAUSE:
return getExceptClause();
case ImperativeOCLPackage.TRY_EXP__TRY_BODY:
return getTryBody();
}
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.TRY_EXP__EXCEPT_CLAUSE:
getExceptClause().clear();
getExceptClause().addAll((Collection<? extends CatchExp>)newValue);
return;
case ImperativeOCLPackage.TRY_EXP__TRY_BODY:
getTryBody().clear();
getTryBody().addAll((Collection<? extends OCLExpression>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case ImperativeOCLPackage.TRY_EXP__EXCEPT_CLAUSE:
getExceptClause().clear();
return;
case ImperativeOCLPackage.TRY_EXP__TRY_BODY:
getTryBody().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case ImperativeOCLPackage.TRY_EXP__EXCEPT_CLAUSE:
return exceptClause != null && !exceptClause.isEmpty();
case ImperativeOCLPackage.TRY_EXP__TRY_BODY:
return tryBody != null && !tryBody.isEmpty();
}
return super.eIsSet(featureID);
}
/**
* @generated NOT
*/
@SuppressWarnings("unchecked")
@Override
public <T, U extends Visitor<T, ?, ?, ?, ?, ?, ?, ?, ?, ?>> T accept(U v) {
if (v instanceof ImperativeOCLVisitor)
return (T) ((ImperativeOCLVisitor) v).visitTryExp(this);
return super.<T, U>accept(v);
}
} //TryExpImpl