blob: b057886e557e09d3c15c009197d023a4e28e1517 [file] [log] [blame]
/**
*/
package org.hl7.fhir.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.hl7.fhir.Code;
import org.hl7.fhir.FhirPackage;
import org.hl7.fhir.ModuleDefinitionCodeFilter;
import org.hl7.fhir.ModuleDefinitionData;
import org.hl7.fhir.ModuleDefinitionDateFilter;
import org.hl7.fhir.Reference;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Module Definition Data</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.impl.ModuleDefinitionDataImpl#getType <em>Type</em>}</li>
* <li>{@link org.hl7.fhir.impl.ModuleDefinitionDataImpl#getProfile <em>Profile</em>}</li>
* <li>{@link org.hl7.fhir.impl.ModuleDefinitionDataImpl#getMustSupport <em>Must Support</em>}</li>
* <li>{@link org.hl7.fhir.impl.ModuleDefinitionDataImpl#getCodeFilter <em>Code Filter</em>}</li>
* <li>{@link org.hl7.fhir.impl.ModuleDefinitionDataImpl#getDateFilter <em>Date Filter</em>}</li>
* </ul>
*
* @generated
*/
public class ModuleDefinitionDataImpl extends BackboneElementImpl implements ModuleDefinitionData {
/**
* The cached value of the '{@link #getType() <em>Type</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getType()
* @generated
* @ordered
*/
protected Code type;
/**
* The cached value of the '{@link #getProfile() <em>Profile</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getProfile()
* @generated
* @ordered
*/
protected Reference profile;
/**
* The cached value of the '{@link #getMustSupport() <em>Must Support</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMustSupport()
* @generated
* @ordered
*/
protected EList<org.hl7.fhir.String> mustSupport;
/**
* The cached value of the '{@link #getCodeFilter() <em>Code Filter</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCodeFilter()
* @generated
* @ordered
*/
protected EList<ModuleDefinitionCodeFilter> codeFilter;
/**
* The cached value of the '{@link #getDateFilter() <em>Date Filter</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDateFilter()
* @generated
* @ordered
*/
protected EList<ModuleDefinitionDateFilter> dateFilter;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ModuleDefinitionDataImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirPackage.eINSTANCE.getModuleDefinitionData();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Code getType() {
return type;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetType(Code newType, NotificationChain msgs) {
Code oldType = type;
type = newType;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.MODULE_DEFINITION_DATA__TYPE, oldType, newType);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setType(Code newType) {
if (newType != type) {
NotificationChain msgs = null;
if (type != null)
msgs = ((InternalEObject)type).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.MODULE_DEFINITION_DATA__TYPE, null, msgs);
if (newType != null)
msgs = ((InternalEObject)newType).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.MODULE_DEFINITION_DATA__TYPE, null, msgs);
msgs = basicSetType(newType, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.MODULE_DEFINITION_DATA__TYPE, newType, newType));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Reference getProfile() {
return profile;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetProfile(Reference newProfile, NotificationChain msgs) {
Reference oldProfile = profile;
profile = newProfile;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.MODULE_DEFINITION_DATA__PROFILE, oldProfile, newProfile);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setProfile(Reference newProfile) {
if (newProfile != profile) {
NotificationChain msgs = null;
if (profile != null)
msgs = ((InternalEObject)profile).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.MODULE_DEFINITION_DATA__PROFILE, null, msgs);
if (newProfile != null)
msgs = ((InternalEObject)newProfile).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.MODULE_DEFINITION_DATA__PROFILE, null, msgs);
msgs = basicSetProfile(newProfile, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.MODULE_DEFINITION_DATA__PROFILE, newProfile, newProfile));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<org.hl7.fhir.String> getMustSupport() {
if (mustSupport == null) {
mustSupport = new EObjectContainmentEList<org.hl7.fhir.String>(org.hl7.fhir.String.class, this, FhirPackage.MODULE_DEFINITION_DATA__MUST_SUPPORT);
}
return mustSupport;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ModuleDefinitionCodeFilter> getCodeFilter() {
if (codeFilter == null) {
codeFilter = new EObjectContainmentEList<ModuleDefinitionCodeFilter>(ModuleDefinitionCodeFilter.class, this, FhirPackage.MODULE_DEFINITION_DATA__CODE_FILTER);
}
return codeFilter;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ModuleDefinitionDateFilter> getDateFilter() {
if (dateFilter == null) {
dateFilter = new EObjectContainmentEList<ModuleDefinitionDateFilter>(ModuleDefinitionDateFilter.class, this, FhirPackage.MODULE_DEFINITION_DATA__DATE_FILTER);
}
return dateFilter;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FhirPackage.MODULE_DEFINITION_DATA__TYPE:
return basicSetType(null, msgs);
case FhirPackage.MODULE_DEFINITION_DATA__PROFILE:
return basicSetProfile(null, msgs);
case FhirPackage.MODULE_DEFINITION_DATA__MUST_SUPPORT:
return ((InternalEList<?>)getMustSupport()).basicRemove(otherEnd, msgs);
case FhirPackage.MODULE_DEFINITION_DATA__CODE_FILTER:
return ((InternalEList<?>)getCodeFilter()).basicRemove(otherEnd, msgs);
case FhirPackage.MODULE_DEFINITION_DATA__DATE_FILTER:
return ((InternalEList<?>)getDateFilter()).basicRemove(otherEnd, 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 FhirPackage.MODULE_DEFINITION_DATA__TYPE:
return getType();
case FhirPackage.MODULE_DEFINITION_DATA__PROFILE:
return getProfile();
case FhirPackage.MODULE_DEFINITION_DATA__MUST_SUPPORT:
return getMustSupport();
case FhirPackage.MODULE_DEFINITION_DATA__CODE_FILTER:
return getCodeFilter();
case FhirPackage.MODULE_DEFINITION_DATA__DATE_FILTER:
return getDateFilter();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case FhirPackage.MODULE_DEFINITION_DATA__TYPE:
setType((Code)newValue);
return;
case FhirPackage.MODULE_DEFINITION_DATA__PROFILE:
setProfile((Reference)newValue);
return;
case FhirPackage.MODULE_DEFINITION_DATA__MUST_SUPPORT:
getMustSupport().clear();
getMustSupport().addAll((Collection<? extends org.hl7.fhir.String>)newValue);
return;
case FhirPackage.MODULE_DEFINITION_DATA__CODE_FILTER:
getCodeFilter().clear();
getCodeFilter().addAll((Collection<? extends ModuleDefinitionCodeFilter>)newValue);
return;
case FhirPackage.MODULE_DEFINITION_DATA__DATE_FILTER:
getDateFilter().clear();
getDateFilter().addAll((Collection<? extends ModuleDefinitionDateFilter>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirPackage.MODULE_DEFINITION_DATA__TYPE:
setType((Code)null);
return;
case FhirPackage.MODULE_DEFINITION_DATA__PROFILE:
setProfile((Reference)null);
return;
case FhirPackage.MODULE_DEFINITION_DATA__MUST_SUPPORT:
getMustSupport().clear();
return;
case FhirPackage.MODULE_DEFINITION_DATA__CODE_FILTER:
getCodeFilter().clear();
return;
case FhirPackage.MODULE_DEFINITION_DATA__DATE_FILTER:
getDateFilter().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirPackage.MODULE_DEFINITION_DATA__TYPE:
return type != null;
case FhirPackage.MODULE_DEFINITION_DATA__PROFILE:
return profile != null;
case FhirPackage.MODULE_DEFINITION_DATA__MUST_SUPPORT:
return mustSupport != null && !mustSupport.isEmpty();
case FhirPackage.MODULE_DEFINITION_DATA__CODE_FILTER:
return codeFilter != null && !codeFilter.isEmpty();
case FhirPackage.MODULE_DEFINITION_DATA__DATE_FILTER:
return dateFilter != null && !dateFilter.isEmpty();
}
return super.eIsSet(featureID);
}
} //ModuleDefinitionDataImpl