/******************************************************************************* * Copyright (c) 2013, 2015 CEA LIST and others. * 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 * * Contributors: * E.D.Willink(CEA LIST) - Initial API and implementation *******************************************************************************/ package org.eclipse.ocl.examples.codegen.cgmodel.impl; import java.util.Collection; import java.util.List; import org.eclipse.emf.common.notify.Notification; 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.impl.ENotificationImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage; import org.eclipse.ocl.examples.codegen.cgmodel.CGOperationCallExp; import org.eclipse.ocl.examples.codegen.cgmodel.CGValuedElement; import org.eclipse.ocl.examples.codegen.utilities.EquivalenceUtil; import org.eclipse.ocl.pivot.Operation; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>CG Operation Call Exp</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGOperationCallExpImpl#getArguments <em>Arguments</em>}</li> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGOperationCallExpImpl#getReferredOperation <em>Referred Operation</em>}</li> * </ul> * * @generated */ public abstract class CGOperationCallExpImpl extends CGCallExpImpl implements CGOperationCallExp { /** * The cached value of the '{@link #getArguments() <em>Arguments</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getArguments() * @generated * @ordered */ protected EList<CGValuedElement> arguments; /** * The default value of the '{@link #getReferredOperation() <em>Referred Operation</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getReferredOperation() * @generated * @ordered */ protected static final Operation REFERRED_OPERATION_EDEFAULT = null; /** * The cached value of the '{@link #getReferredOperation() <em>Referred Operation</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getReferredOperation() * @generated * @ordered */ protected Operation referredOperation = REFERRED_OPERATION_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CGOperationCallExpImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return CGModelPackage.Literals.CG_OPERATION_CALL_EXP; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override @SuppressWarnings("null") public @NonNull List<CGValuedElement> getArguments() { if (arguments == null) { arguments = new EObjectContainmentEList<CGValuedElement>(CGValuedElement.class, this, CGModelPackage.CG_OPERATION_CALL_EXP__ARGUMENTS); } return arguments; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Operation getReferredOperation() { return referredOperation; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void setReferredOperation(Operation newReferredOperation) { Operation oldReferredOperation = referredOperation; referredOperation = newReferredOperation; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_OPERATION_CALL_EXP__REFERRED_OPERATION, oldReferredOperation, referredOperation)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { return super.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CGModelPackage.CG_OPERATION_CALL_EXP__ARGUMENTS: return ((InternalEList<?>)getArguments()).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 CGModelPackage.CG_OPERATION_CALL_EXP__ARGUMENTS: return getArguments(); case CGModelPackage.CG_OPERATION_CALL_EXP__REFERRED_OPERATION: return getReferredOperation(); } 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 CGModelPackage.CG_OPERATION_CALL_EXP__ARGUMENTS: getArguments().clear(); getArguments().addAll((Collection<? extends CGValuedElement>)newValue); return; case CGModelPackage.CG_OPERATION_CALL_EXP__REFERRED_OPERATION: setReferredOperation((Operation)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CGModelPackage.CG_OPERATION_CALL_EXP__ARGUMENTS: getArguments().clear(); return; case CGModelPackage.CG_OPERATION_CALL_EXP__REFERRED_OPERATION: setReferredOperation(REFERRED_OPERATION_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CGModelPackage.CG_OPERATION_CALL_EXP__ARGUMENTS: return arguments != null && !arguments.isEmpty(); case CGModelPackage.CG_OPERATION_CALL_EXP__REFERRED_OPERATION: return REFERRED_OPERATION_EDEFAULT == null ? referredOperation != null : !REFERRED_OPERATION_EDEFAULT.equals(referredOperation); } return super.eIsSet(featureID); } /** * {@inheritDoc} * @generated */ @Override public @Nullable Boolean isEquivalentToInternal(@NonNull CGValuedElement thatValue) { return (getClass() == thatValue.getClass()) ? EquivalenceUtil.isEquivalent(this, (CGOperationCallExp)thatValue) : null; } /** * {@inheritDoc} * @generated */ @Override public boolean isNonNull() { return referredOperation != null ? referredOperation.isIsRequired() : isRequired(); } /** * {@inheritDoc} * @generated */ @Override public boolean isNull() { return false; } } //CGOperationCallExpImpl