blob: 2ed1d5213fc1f8cf2ce930472d956a445b87aefe [file] [log] [blame]
/**
* Copyright (c)2020 CEA LIST, Committer Name, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
* Gabriel Pedroza (CEA LIST) gabriel.pedroza@cea.fr
* Patrick Tessier (CEA LIST) Patrick.tessier@cea.fr
*
*/
package org.eclipse.papyrus.pdp4eng.designer.profile.pdp4engDesign.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import org.eclipse.papyrus.pdp4eng.designer.profile.pdp4engDesign.pdp4engDesignPackage;
import org.eclipse.uml2.uml.Activity;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Process</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.pdp4eng.designer.profile.pdp4engDesign.impl.ProcessImpl#getBase_Activity <em>Base Activity</em>}</li>
* </ul>
*
* @generated
*/
public class ProcessImpl extends MinimalEObjectImpl.Container implements org.eclipse.papyrus.pdp4eng.designer.profile.pdp4engDesign.Process {
/**
* The cached value of the '{@link #getBase_Activity() <em>Base Activity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getBase_Activity()
* @generated
* @ordered
*/
protected Activity base_Activity;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ProcessImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return pdp4engDesignPackage.Literals.PROCESS;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Activity getBase_Activity() {
if (base_Activity != null && base_Activity.eIsProxy()) {
InternalEObject oldBase_Activity = (InternalEObject)base_Activity;
base_Activity = (Activity)eResolveProxy(oldBase_Activity);
if (base_Activity != oldBase_Activity) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, pdp4engDesignPackage.PROCESS__BASE_ACTIVITY, oldBase_Activity, base_Activity));
}
}
return base_Activity;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Activity basicGetBase_Activity() {
return base_Activity;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setBase_Activity(Activity newBase_Activity) {
Activity oldBase_Activity = base_Activity;
base_Activity = newBase_Activity;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, pdp4engDesignPackage.PROCESS__BASE_ACTIVITY, oldBase_Activity, base_Activity));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case pdp4engDesignPackage.PROCESS__BASE_ACTIVITY:
if (resolve) return getBase_Activity();
return basicGetBase_Activity();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case pdp4engDesignPackage.PROCESS__BASE_ACTIVITY:
setBase_Activity((Activity)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case pdp4engDesignPackage.PROCESS__BASE_ACTIVITY:
setBase_Activity((Activity)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case pdp4engDesignPackage.PROCESS__BASE_ACTIVITY:
return base_Activity != null;
}
return super.eIsSet(featureID);
}
} //ProcessImpl