/******************************************************************************* * 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.Map; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; 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.EcoreUtil; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.eclipse.ocl.examples.codegen.cgmodel.CGClass; import org.eclipse.ocl.examples.codegen.cgmodel.CGElement; import org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage; import org.eclipse.ocl.examples.codegen.cgmodel.CGProperty; import org.eclipse.ocl.examples.codegen.cgmodel.CGValuedElement; import org.eclipse.ocl.examples.codegen.cgmodel.util.CGModelVisitor; import org.eclipse.ocl.examples.codegen.cse.AbstractPlace; import org.eclipse.ocl.examples.codegen.cse.OuterStackPlace; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>CG Property</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGPropertyImpl#getContainingClass <em>Containing Class</em>}</li> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGPropertyImpl#getBody <em>Body</em>}</li> * </ul> * * @generated */ public class CGPropertyImpl extends CGValuedElementImpl implements CGProperty { /** * The cached value of the '{@link #getBody() <em>Body</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getBody() * @generated * @ordered */ protected CGValuedElement body; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CGPropertyImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return CGModelPackage.Literals.CG_PROPERTY; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public CGClass getContainingClass() { if (eContainerFeatureID() != CGModelPackage.CG_PROPERTY__CONTAINING_CLASS) return null; return (CGClass)eInternalContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetContainingClass(CGClass newContainingClass, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject)newContainingClass, CGModelPackage.CG_PROPERTY__CONTAINING_CLASS, msgs); return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void setContainingClass(CGClass newContainingClass) { if (newContainingClass != eInternalContainer() || (eContainerFeatureID() != CGModelPackage.CG_PROPERTY__CONTAINING_CLASS && newContainingClass != null)) { if (EcoreUtil.isAncestor(this, newContainingClass)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newContainingClass != null) msgs = ((InternalEObject)newContainingClass).eInverseAdd(this, CGModelPackage.CG_CLASS__PROPERTIES, CGClass.class, msgs); msgs = basicSetContainingClass(newContainingClass, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_PROPERTY__CONTAINING_CLASS, newContainingClass, newContainingClass)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public CGValuedElement getBody() { return body; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetBody(CGValuedElement newBody, NotificationChain msgs) { CGValuedElement oldBody = body; body = newBody; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_PROPERTY__BODY, oldBody, newBody); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void setBody(CGValuedElement newBody) { if (newBody != body) { NotificationChain msgs = null; if (body != null) msgs = ((InternalEObject)body).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CGModelPackage.CG_PROPERTY__BODY, null, msgs); if (newBody != null) msgs = ((InternalEObject)newBody).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CGModelPackage.CG_PROPERTY__BODY, null, msgs); msgs = basicSetBody(newBody, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_PROPERTY__BODY, newBody, newBody)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetContainingClass((CGClass)otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: return basicSetContainingClass(null, msgs); case CGModelPackage.CG_PROPERTY__BODY: return basicSetBody(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: return eInternalContainer().eInverseRemove(this, CGModelPackage.CG_CLASS__PROPERTIES, CGClass.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: return getContainingClass(); case CGModelPackage.CG_PROPERTY__BODY: return getBody(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: setContainingClass((CGClass)newValue); return; case CGModelPackage.CG_PROPERTY__BODY: setBody((CGValuedElement)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: setContainingClass((CGClass)null); return; case CGModelPackage.CG_PROPERTY__BODY: setBody((CGValuedElement)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CGModelPackage.CG_PROPERTY__CONTAINING_CLASS: return getContainingClass() != null; case CGModelPackage.CG_PROPERTY__BODY: return body != null; } return super.eIsSet(featureID); } /** * {@inheritDoc} * @generated */ @Override public <R> R accept(@NonNull CGModelVisitor<R> visitor) { return visitor.visitCGProperty(this); } /** * {@inheritDoc} * @generated */ @Override public @Nullable AbstractPlace getPlace(@NonNull Map<CGElement,AbstractPlace> element2place) { return OuterStackPlace.createOuterStackPlace(element2place, this); } /** * {@inheritDoc} * @generated */ @Override public boolean isBoxed() { return true; } /** * {@inheritDoc} * @generated */ @Override public boolean isContext() { return true; } /** * {@inheritDoc} * @generated */ @Override public boolean isEcore() { return false; } /** * {@inheritDoc} * @generated */ @Override public @Nullable Boolean isEquivalentToInternal(@NonNull CGValuedElement thatValue) { throw new UnsupportedOperationException(getClass().getName() + ".isEquivalentToInternal()"); } /** * {@inheritDoc} * @generated */ @Override public boolean isUnboxed() { return false; } } //CGPropertyImpl