blob: 3ed0b0ae1c4a434e85242914a88732010599a572 [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.Date;
import org.hl7.fhir.FhirPackage;
import org.hl7.fhir.ValueSetCompose;
import org.hl7.fhir.ValueSetInclude;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Value Set Compose</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.impl.ValueSetComposeImpl#getLockedDate <em>Locked Date</em>}</li>
* <li>{@link org.hl7.fhir.impl.ValueSetComposeImpl#getInactive <em>Inactive</em>}</li>
* <li>{@link org.hl7.fhir.impl.ValueSetComposeImpl#getInclude <em>Include</em>}</li>
* <li>{@link org.hl7.fhir.impl.ValueSetComposeImpl#getExclude <em>Exclude</em>}</li>
* </ul>
*
* @generated
*/
public class ValueSetComposeImpl extends BackboneElementImpl implements ValueSetCompose {
/**
* The cached value of the '{@link #getLockedDate() <em>Locked Date</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getLockedDate()
* @generated
* @ordered
*/
protected Date lockedDate;
/**
* The cached value of the '{@link #getInactive() <em>Inactive</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getInactive()
* @generated
* @ordered
*/
protected org.hl7.fhir.Boolean inactive;
/**
* The cached value of the '{@link #getInclude() <em>Include</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getInclude()
* @generated
* @ordered
*/
protected EList<ValueSetInclude> include;
/**
* The cached value of the '{@link #getExclude() <em>Exclude</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getExclude()
* @generated
* @ordered
*/
protected EList<ValueSetInclude> exclude;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ValueSetComposeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirPackage.eINSTANCE.getValueSetCompose();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Date getLockedDate() {
return lockedDate;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetLockedDate(Date newLockedDate, NotificationChain msgs) {
Date oldLockedDate = lockedDate;
lockedDate = newLockedDate;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE, oldLockedDate, newLockedDate);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLockedDate(Date newLockedDate) {
if (newLockedDate != lockedDate) {
NotificationChain msgs = null;
if (lockedDate != null)
msgs = ((InternalEObject)lockedDate).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE, null, msgs);
if (newLockedDate != null)
msgs = ((InternalEObject)newLockedDate).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE, null, msgs);
msgs = basicSetLockedDate(newLockedDate, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE, newLockedDate, newLockedDate));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public org.hl7.fhir.Boolean getInactive() {
return inactive;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetInactive(org.hl7.fhir.Boolean newInactive, NotificationChain msgs) {
org.hl7.fhir.Boolean oldInactive = inactive;
inactive = newInactive;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.VALUE_SET_COMPOSE__INACTIVE, oldInactive, newInactive);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setInactive(org.hl7.fhir.Boolean newInactive) {
if (newInactive != inactive) {
NotificationChain msgs = null;
if (inactive != null)
msgs = ((InternalEObject)inactive).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.VALUE_SET_COMPOSE__INACTIVE, null, msgs);
if (newInactive != null)
msgs = ((InternalEObject)newInactive).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.VALUE_SET_COMPOSE__INACTIVE, null, msgs);
msgs = basicSetInactive(newInactive, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.VALUE_SET_COMPOSE__INACTIVE, newInactive, newInactive));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ValueSetInclude> getInclude() {
if (include == null) {
include = new EObjectContainmentEList<ValueSetInclude>(ValueSetInclude.class, this, FhirPackage.VALUE_SET_COMPOSE__INCLUDE);
}
return include;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ValueSetInclude> getExclude() {
if (exclude == null) {
exclude = new EObjectContainmentEList<ValueSetInclude>(ValueSetInclude.class, this, FhirPackage.VALUE_SET_COMPOSE__EXCLUDE);
}
return exclude;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE:
return basicSetLockedDate(null, msgs);
case FhirPackage.VALUE_SET_COMPOSE__INACTIVE:
return basicSetInactive(null, msgs);
case FhirPackage.VALUE_SET_COMPOSE__INCLUDE:
return ((InternalEList<?>)getInclude()).basicRemove(otherEnd, msgs);
case FhirPackage.VALUE_SET_COMPOSE__EXCLUDE:
return ((InternalEList<?>)getExclude()).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.VALUE_SET_COMPOSE__LOCKED_DATE:
return getLockedDate();
case FhirPackage.VALUE_SET_COMPOSE__INACTIVE:
return getInactive();
case FhirPackage.VALUE_SET_COMPOSE__INCLUDE:
return getInclude();
case FhirPackage.VALUE_SET_COMPOSE__EXCLUDE:
return getExclude();
}
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.VALUE_SET_COMPOSE__LOCKED_DATE:
setLockedDate((Date)newValue);
return;
case FhirPackage.VALUE_SET_COMPOSE__INACTIVE:
setInactive((org.hl7.fhir.Boolean)newValue);
return;
case FhirPackage.VALUE_SET_COMPOSE__INCLUDE:
getInclude().clear();
getInclude().addAll((Collection<? extends ValueSetInclude>)newValue);
return;
case FhirPackage.VALUE_SET_COMPOSE__EXCLUDE:
getExclude().clear();
getExclude().addAll((Collection<? extends ValueSetInclude>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE:
setLockedDate((Date)null);
return;
case FhirPackage.VALUE_SET_COMPOSE__INACTIVE:
setInactive((org.hl7.fhir.Boolean)null);
return;
case FhirPackage.VALUE_SET_COMPOSE__INCLUDE:
getInclude().clear();
return;
case FhirPackage.VALUE_SET_COMPOSE__EXCLUDE:
getExclude().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirPackage.VALUE_SET_COMPOSE__LOCKED_DATE:
return lockedDate != null;
case FhirPackage.VALUE_SET_COMPOSE__INACTIVE:
return inactive != null;
case FhirPackage.VALUE_SET_COMPOSE__INCLUDE:
return include != null && !include.isEmpty();
case FhirPackage.VALUE_SET_COMPOSE__EXCLUDE:
return exclude != null && !exclude.isEmpty();
}
return super.eIsSet(featureID);
}
} //ValueSetComposeImpl