blob: da222c72513c6e4bfbce7040f2e26669459a70ff [file] [log] [blame]
/**
*/
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.PathNameCS;
import org.eclipse.ocl.xtext.basecs.impl.ElementCSImpl;
import org.eclipse.ocl.xtext.basecs.util.BaseCSVisitor;
import org.eclipse.ocl.xtext.essentialoclcs.StringLiteralExpCS;
import org.eclipse.qvto.examples.xtext.qvtoperationalcs.PackageRefCS;
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#getPathNameCS <em>Path Name CS</em>}</li>
* <li>{@link org.eclipse.qvto.examples.xtext.qvtoperationalcs.impl.PackageRefCSImpl#getUriCS <em>Uri CS</em>}</li>
* </ul>
*
* @generated
*/
public class PackageRefCSImpl extends ElementCSImpl implements PackageRefCS {
/**
* The cached value of the '{@link #getPathNameCS() <em>Path Name CS</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getPathNameCS()
* @generated
* @ordered
*/
protected PathNameCS pathNameCS;
/**
* The cached value of the '{@link #getUriCS() <em>Uri CS</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getUriCS()
* @generated
* @ordered
*/
protected StringLiteralExpCS uriCS;
/**
* <!-- 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 PathNameCS getPathNameCS() {
return pathNameCS;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetPathNameCS(PathNameCS newPathNameCS, NotificationChain msgs) {
PathNameCS oldPathNameCS = pathNameCS;
pathNameCS = newPathNameCS;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__PATH_NAME_CS, oldPathNameCS, newPathNameCS);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setPathNameCS(PathNameCS newPathNameCS) {
if (newPathNameCS != pathNameCS) {
NotificationChain msgs = null;
if (pathNameCS != null)
msgs = ((InternalEObject)pathNameCS).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - QVTOperationalCSPackage.PACKAGE_REF_CS__PATH_NAME_CS, null, msgs);
if (newPathNameCS != null)
msgs = ((InternalEObject)newPathNameCS).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - QVTOperationalCSPackage.PACKAGE_REF_CS__PATH_NAME_CS, null, msgs);
msgs = basicSetPathNameCS(newPathNameCS, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__PATH_NAME_CS, newPathNameCS, newPathNameCS));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public StringLiteralExpCS getUriCS() {
return uriCS;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetUriCS(StringLiteralExpCS newUriCS, NotificationChain msgs) {
StringLiteralExpCS oldUriCS = uriCS;
uriCS = newUriCS;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS, oldUriCS, newUriCS);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setUriCS(StringLiteralExpCS newUriCS) {
if (newUriCS != uriCS) {
NotificationChain msgs = null;
if (uriCS != null)
msgs = ((InternalEObject)uriCS).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS, null, msgs);
if (newUriCS != null)
msgs = ((InternalEObject)newUriCS).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS, null, msgs);
msgs = basicSetUriCS(newUriCS, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS, newUriCS, newUriCS));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case QVTOperationalCSPackage.PACKAGE_REF_CS__PATH_NAME_CS:
return basicSetPathNameCS(null, msgs);
case QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS:
return basicSetUriCS(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__PATH_NAME_CS:
return getPathNameCS();
case QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS:
return getUriCS();
}
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__PATH_NAME_CS:
setPathNameCS((PathNameCS)newValue);
return;
case QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS:
setUriCS((StringLiteralExpCS)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__PATH_NAME_CS:
setPathNameCS((PathNameCS)null);
return;
case QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS:
setUriCS((StringLiteralExpCS)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case QVTOperationalCSPackage.PACKAGE_REF_CS__PATH_NAME_CS:
return pathNameCS != null;
case QVTOperationalCSPackage.PACKAGE_REF_CS__URI_CS:
return uriCS != null;
}
return super.eIsSet(featureID);
}
/**
* {@inheritDoc}
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public <R> R accept(BaseCSVisitor<R> visitor) {
return (R) ((QVTOperationalCSVisitor<?>)visitor).visitPackageRefCS(this);
}
} //PackageRefCSImpl