/******************************************************************************* * Copyright (c) 2010, 2015 Willink Transformations 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 - initial API and implementation *******************************************************************************/ package org.eclipse.ocl.xtext.completeoclcs.impl; 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.ocl.xtext.basecs.TypedRefCS; import org.eclipse.ocl.xtext.completeoclcs.CompleteOCLCSPackage; import org.eclipse.ocl.xtext.completeoclcs.FeatureContextDeclCS; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Feature Context Decl CS</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.ocl.xtext.completeoclcs.impl.FeatureContextDeclCSImpl#getOwnedType <em>Owned Type</em>}</li> * </ul> * * @generated */ public abstract class FeatureContextDeclCSImpl extends ContextDeclCSImpl implements FeatureContextDeclCS { /** * The cached value of the '{@link #getOwnedType() <em>Owned Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOwnedType() * @generated * @ordered */ protected TypedRefCS ownedType; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected FeatureContextDeclCSImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return CompleteOCLCSPackage.Literals.FEATURE_CONTEXT_DECL_CS; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public TypedRefCS getOwnedType() { return ownedType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetOwnedType(TypedRefCS newOwnedType, NotificationChain msgs) { TypedRefCS oldOwnedType = ownedType; ownedType = newOwnedType; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE, oldOwnedType, newOwnedType); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void setOwnedType(TypedRefCS newOwnedType) { if (newOwnedType != ownedType) { NotificationChain msgs = null; if (ownedType != null) msgs = ((InternalEObject)ownedType).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE, null, msgs); if (newOwnedType != null) msgs = ((InternalEObject)newOwnedType).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE, null, msgs); msgs = basicSetOwnedType(newOwnedType, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE, newOwnedType, newOwnedType)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE: return basicSetOwnedType(null, 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 CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE: return getOwnedType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE: setOwnedType((TypedRefCS)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE: setOwnedType((TypedRefCS)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CompleteOCLCSPackage.FEATURE_CONTEXT_DECL_CS__OWNED_TYPE: return ownedType != null; } return super.eIsSet(featureID); } } //FeatureContextDeclCSImpl