/** */ package org.eclipse.qvto.examples.xtext.qvtoperationalcs.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.impl.ElementCSImpl; import org.eclipse.ocl.xtext.basecs.util.BaseCSVisitor; import org.eclipse.qvto.examples.xtext.qvtoperationalcs.PackageRefCS; import org.eclipse.qvto.examples.xtext.qvtoperationalcs.PathName2CS; import org.eclipse.qvto.examples.xtext.qvtoperationalcs.QVTOperationalCSPackage; import org.eclipse.qvto.examples.xtext.qvtoperationalcs.util.QVTOperationalCSVisitor; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Package Ref CS</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.qvto.examples.xtext.qvtoperationalcs.impl.PackageRefCSImpl#getOwnedScopedName <em>Owned Scoped Name</em>}</li> * <li>{@link org.eclipse.qvto.examples.xtext.qvtoperationalcs.impl.PackageRefCSImpl#getUri <em>Uri</em>}</li> * </ul> * * @generated */ public class PackageRefCSImpl extends ElementCSImpl implements PackageRefCS { /** * The cached value of the '{@link #getOwnedScopedName() <em>Owned Scoped Name</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOwnedScopedName() * @generated * @ordered */ protected PathName2CS ownedScopedName; /** * The default value of the '{@link #getUri() <em>Uri</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getUri() * @generated * @ordered */ protected static final String URI_EDEFAULT = null; /** * The cached value of the '{@link #getUri() <em>Uri</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getUri() * @generated * @ordered */ protected String uri = URI_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PackageRefCSImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return QVTOperationalCSPackage.Literals.PACKAGE_REF_CS; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PathName2CS getOwnedScopedName() { return ownedScopedName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetOwnedScopedName(PathName2CS newOwnedScopedName, NotificationChain msgs) { PathName2CS oldOwnedScopedName = ownedScopedName; ownedScopedName = newOwnedScopedName; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME, oldOwnedScopedName, newOwnedScopedName); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setOwnedScopedName(PathName2CS newOwnedScopedName) { if (newOwnedScopedName != ownedScopedName) { NotificationChain msgs = null; if (ownedScopedName != null) msgs = ((InternalEObject)ownedScopedName).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME, null, msgs); if (newOwnedScopedName != null) msgs = ((InternalEObject)newOwnedScopedName).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME, null, msgs); msgs = basicSetOwnedScopedName(newOwnedScopedName, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME, newOwnedScopedName, newOwnedScopedName)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getUri() { return uri; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setUri(String newUri) { String oldUri = uri; uri = newUri; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__URI, oldUri, uri)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ 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 QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME: return basicSetOwnedScopedName(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 QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME: return getOwnedScopedName(); case QVTOperationalCSPackage.PACKAGE_REF_CS__URI: return getUri(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME: setOwnedScopedName((PathName2CS)newValue); return; case QVTOperationalCSPackage.PACKAGE_REF_CS__URI: setUri((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME: setOwnedScopedName((PathName2CS)null); return; case QVTOperationalCSPackage.PACKAGE_REF_CS__URI: setUri(URI_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case QVTOperationalCSPackage.PACKAGE_REF_CS__OWNED_SCOPED_NAME: return ownedScopedName != null; case QVTOperationalCSPackage.PACKAGE_REF_CS__URI: return URI_EDEFAULT == null ? uri != null : !URI_EDEFAULT.equals(uri); } return super.eIsSet(featureID); } /** * {@inheritDoc} * @generated */ @SuppressWarnings("unchecked") @Override public <R> R accept(BaseCSVisitor<R> visitor) { return (R) ((QVTOperationalCSVisitor<?>)visitor).visitPackageRefCS(this); } } //PackageRefCSImpl