org.eclipse.ocl.cst.impl.PackageDeclarationCSImpl Maven / Gradle / Ivy
/**
*
*
* Copyright (c) 2005, 2008 IBM Corporation, Zeligsoft Inc., 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:
* IBM - Initial API and implementation
* Zeligsoft - Bugs 243976, 251349
*
*
*
* $Id: PackageDeclarationCSImpl.java,v 1.4 2008/12/02 11:58:50 cdamus Exp $
*/
package org.eclipse.ocl.cst.impl;
import java.util.Collection;
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.ocl.cst.CSTPackage;
import org.eclipse.ocl.cst.ContextDeclCS;
import org.eclipse.ocl.cst.PackageDeclarationCS;
import org.eclipse.ocl.cst.PathNameCS;
/**
*
* An implementation of the model object 'Package Declaration CS'.
*
*
* The following features are implemented:
*
* - {@link org.eclipse.ocl.cst.impl.PackageDeclarationCSImpl#getPathNameCS Path Name CS}
* - {@link org.eclipse.ocl.cst.impl.PackageDeclarationCSImpl#getContextDecls Context Decls}
* - {@link org.eclipse.ocl.cst.impl.PackageDeclarationCSImpl#getPackageDeclarationCS Package Declaration CS}
*
*
*
* @generated
*/
public class PackageDeclarationCSImpl
extends CSTNodeImpl
implements PackageDeclarationCS {
/**
* The cached value of the '{@link #getPathNameCS() Path Name CS}' containment reference.
*
*
* @see #getPathNameCS()
* @generated
* @ordered
*/
protected PathNameCS pathNameCS;
/**
* The cached value of the '{@link #getContextDecls() Context Decls}' containment reference list.
*
*
* @see #getContextDecls()
* @generated
* @ordered
*/
protected EList contextDecls;
/**
* The cached value of the '{@link #getPackageDeclarationCS() Package Declaration CS}' reference.
*
*
* @see #getPackageDeclarationCS()
* @generated
* @ordered
*/
protected PackageDeclarationCS packageDeclarationCS;
/**
*
*
* @generated
*/
protected PackageDeclarationCSImpl() {
super();
}
/**
*
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return CSTPackage.Literals.PACKAGE_DECLARATION_CS;
}
/**
*
*
* @generated
*/
public PathNameCS getPathNameCS() {
return pathNameCS;
}
/**
*
*
* @generated
*/
public NotificationChain basicSetPathNameCS(PathNameCS newPathNameCS,
NotificationChain msgs) {
PathNameCS oldPathNameCS = pathNameCS;
pathNameCS = newPathNameCS;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET,
CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS, oldPathNameCS,
newPathNameCS);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
*
*
* @generated
*/
public void setPathNameCS(PathNameCS newPathNameCS) {
if (newPathNameCS != pathNameCS) {
NotificationChain msgs = null;
if (pathNameCS != null)
msgs = ((InternalEObject) pathNameCS).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS,
null, msgs);
if (newPathNameCS != null)
msgs = ((InternalEObject) newPathNameCS).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS,
null, msgs);
msgs = basicSetPathNameCS(newPathNameCS, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS, newPathNameCS,
newPathNameCS));
}
/**
*
*
* @generated
*/
public EList getContextDecls() {
if (contextDecls == null) {
contextDecls = new EObjectContainmentEList(
ContextDeclCS.class, this,
CSTPackage.PACKAGE_DECLARATION_CS__CONTEXT_DECLS);
}
return contextDecls;
}
/**
*
*
* @generated
*/
public PackageDeclarationCS getPackageDeclarationCS() {
if (packageDeclarationCS != null && packageDeclarationCS.eIsProxy()) {
InternalEObject oldPackageDeclarationCS = (InternalEObject) packageDeclarationCS;
packageDeclarationCS = (PackageDeclarationCS) eResolveProxy(oldPackageDeclarationCS);
if (packageDeclarationCS != oldPackageDeclarationCS) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(
this,
Notification.RESOLVE,
CSTPackage.PACKAGE_DECLARATION_CS__PACKAGE_DECLARATION_CS,
oldPackageDeclarationCS, packageDeclarationCS));
}
}
return packageDeclarationCS;
}
/**
*
*
* @generated
*/
public PackageDeclarationCS basicGetPackageDeclarationCS() {
return packageDeclarationCS;
}
/**
*
*
* @generated
*/
public void setPackageDeclarationCS(
PackageDeclarationCS newPackageDeclarationCS) {
PackageDeclarationCS oldPackageDeclarationCS = packageDeclarationCS;
packageDeclarationCS = newPackageDeclarationCS;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
CSTPackage.PACKAGE_DECLARATION_CS__PACKAGE_DECLARATION_CS,
oldPackageDeclarationCS, packageDeclarationCS));
}
/**
*
*
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS :
return basicSetPathNameCS(null, msgs);
case CSTPackage.PACKAGE_DECLARATION_CS__CONTEXT_DECLS :
return ((InternalEList>) getContextDecls()).basicRemove(
otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
*
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS :
return getPathNameCS();
case CSTPackage.PACKAGE_DECLARATION_CS__CONTEXT_DECLS :
return getContextDecls();
case CSTPackage.PACKAGE_DECLARATION_CS__PACKAGE_DECLARATION_CS :
if (resolve)
return getPackageDeclarationCS();
return basicGetPackageDeclarationCS();
}
return super.eGet(featureID, resolve, coreType);
}
/**
*
*
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS :
setPathNameCS((PathNameCS) newValue);
return;
case CSTPackage.PACKAGE_DECLARATION_CS__CONTEXT_DECLS :
getContextDecls().clear();
getContextDecls().addAll(
(Collection extends ContextDeclCS>) newValue);
return;
case CSTPackage.PACKAGE_DECLARATION_CS__PACKAGE_DECLARATION_CS :
setPackageDeclarationCS((PackageDeclarationCS) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
*
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS :
setPathNameCS((PathNameCS) null);
return;
case CSTPackage.PACKAGE_DECLARATION_CS__CONTEXT_DECLS :
getContextDecls().clear();
return;
case CSTPackage.PACKAGE_DECLARATION_CS__PACKAGE_DECLARATION_CS :
setPackageDeclarationCS((PackageDeclarationCS) null);
return;
}
super.eUnset(featureID);
}
/**
*
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case CSTPackage.PACKAGE_DECLARATION_CS__PATH_NAME_CS :
return pathNameCS != null;
case CSTPackage.PACKAGE_DECLARATION_CS__CONTEXT_DECLS :
return contextDecls != null && !contextDecls.isEmpty();
case CSTPackage.PACKAGE_DECLARATION_CS__PACKAGE_DECLARATION_CS :
return packageDeclarationCS != null;
}
return super.eIsSet(featureID);
}
} //PackageDeclarationCSImpl