blob: 41ce470f9380a0cbe941fa108292bf86d7f09537 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson 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:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource.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.mdht.uml.fhir.core.datatype.impl.BackboneElementImpl;
import org.eclipse.mdht.uml.fhir.core.resource.ExpansionProfileCodeSystem;
import org.eclipse.mdht.uml.fhir.core.resource.ExpansionProfileCodeSystemCodeSystemExclude;
import org.eclipse.mdht.uml.fhir.core.resource.ExpansionProfileCodeSystemCodeSystemInclude;
import org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Expansion Profile Code System</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.impl.ExpansionProfileCodeSystemImpl#getInclude <em>Include</em>}</li>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.impl.ExpansionProfileCodeSystemImpl#getExclude <em>Exclude</em>}</li>
* </ul>
*
* @generated
*/
public class ExpansionProfileCodeSystemImpl extends BackboneElementImpl implements ExpansionProfileCodeSystem {
/**
* The cached value of the '{@link #getInclude() <em>Include</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getInclude()
* @generated
* @ordered
*/
protected ExpansionProfileCodeSystemCodeSystemInclude include;
/**
* The cached value of the '{@link #getExclude() <em>Exclude</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getExclude()
* @generated
* @ordered
*/
protected ExpansionProfileCodeSystemCodeSystemExclude exclude;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ExpansionProfileCodeSystemImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirResourcePackage.eINSTANCE.getExpansionProfileCodeSystem();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ExpansionProfileCodeSystemCodeSystemInclude getInclude() {
return include;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetInclude(ExpansionProfileCodeSystemCodeSystemInclude newInclude, NotificationChain msgs) {
ExpansionProfileCodeSystemCodeSystemInclude oldInclude = include;
include = newInclude;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE, oldInclude, newInclude);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setInclude(ExpansionProfileCodeSystemCodeSystemInclude newInclude) {
if (newInclude != include) {
NotificationChain msgs = null;
if (include != null)
msgs = ((InternalEObject)include).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE, null, msgs);
if (newInclude != null)
msgs = ((InternalEObject)newInclude).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE, null, msgs);
msgs = basicSetInclude(newInclude, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE, newInclude, newInclude));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ExpansionProfileCodeSystemCodeSystemExclude getExclude() {
return exclude;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetExclude(ExpansionProfileCodeSystemCodeSystemExclude newExclude, NotificationChain msgs) {
ExpansionProfileCodeSystemCodeSystemExclude oldExclude = exclude;
exclude = newExclude;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE, oldExclude, newExclude);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setExclude(ExpansionProfileCodeSystemCodeSystemExclude newExclude) {
if (newExclude != exclude) {
NotificationChain msgs = null;
if (exclude != null)
msgs = ((InternalEObject)exclude).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE, null, msgs);
if (newExclude != null)
msgs = ((InternalEObject)newExclude).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE, null, msgs);
msgs = basicSetExclude(newExclude, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE, newExclude, newExclude));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE:
return basicSetInclude(null, msgs);
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE:
return basicSetExclude(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 FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE:
return getInclude();
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE:
return getExclude();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE:
setInclude((ExpansionProfileCodeSystemCodeSystemInclude)newValue);
return;
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE:
setExclude((ExpansionProfileCodeSystemCodeSystemExclude)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE:
setInclude((ExpansionProfileCodeSystemCodeSystemInclude)null);
return;
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE:
setExclude((ExpansionProfileCodeSystemCodeSystemExclude)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__INCLUDE:
return include != null;
case FhirResourcePackage.EXPANSION_PROFILE_CODE_SYSTEM__EXCLUDE:
return exclude != null;
}
return super.eIsSet(featureID);
}
} //ExpansionProfileCodeSystemImpl