blob: a83323cedc1c57fdcef84ed0cb0dfa832b89cb2a [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.CodeableConcept;
import org.hl7.fhir.FhirPackage;
import org.hl7.fhir.Reference;
import org.hl7.fhir.SpecimenTreatment;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Specimen Treatment</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.impl.SpecimenTreatmentImpl#getDescription <em>Description</em>}</li>
* <li>{@link org.hl7.fhir.impl.SpecimenTreatmentImpl#getProcedure <em>Procedure</em>}</li>
* <li>{@link org.hl7.fhir.impl.SpecimenTreatmentImpl#getAdditive <em>Additive</em>}</li>
* </ul>
*
* @generated
*/
public class SpecimenTreatmentImpl extends BackboneElementImpl implements SpecimenTreatment {
/**
* The cached value of the '{@link #getDescription() <em>Description</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDescription()
* @generated
* @ordered
*/
protected org.hl7.fhir.String description;
/**
* The cached value of the '{@link #getProcedure() <em>Procedure</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getProcedure()
* @generated
* @ordered
*/
protected CodeableConcept procedure;
/**
* The cached value of the '{@link #getAdditive() <em>Additive</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getAdditive()
* @generated
* @ordered
*/
protected EList<Reference> additive;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected SpecimenTreatmentImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirPackage.eINSTANCE.getSpecimenTreatment();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public org.hl7.fhir.String getDescription() {
return description;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetDescription(org.hl7.fhir.String newDescription, NotificationChain msgs) {
org.hl7.fhir.String oldDescription = description;
description = newDescription;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION, oldDescription, newDescription);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setDescription(org.hl7.fhir.String newDescription) {
if (newDescription != description) {
NotificationChain msgs = null;
if (description != null)
msgs = ((InternalEObject)description).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION, null, msgs);
if (newDescription != null)
msgs = ((InternalEObject)newDescription).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION, null, msgs);
msgs = basicSetDescription(newDescription, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION, newDescription, newDescription));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public CodeableConcept getProcedure() {
return procedure;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetProcedure(CodeableConcept newProcedure, NotificationChain msgs) {
CodeableConcept oldProcedure = procedure;
procedure = newProcedure;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.SPECIMEN_TREATMENT__PROCEDURE, oldProcedure, newProcedure);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setProcedure(CodeableConcept newProcedure) {
if (newProcedure != procedure) {
NotificationChain msgs = null;
if (procedure != null)
msgs = ((InternalEObject)procedure).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.SPECIMEN_TREATMENT__PROCEDURE, null, msgs);
if (newProcedure != null)
msgs = ((InternalEObject)newProcedure).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.SPECIMEN_TREATMENT__PROCEDURE, null, msgs);
msgs = basicSetProcedure(newProcedure, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.SPECIMEN_TREATMENT__PROCEDURE, newProcedure, newProcedure));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Reference> getAdditive() {
if (additive == null) {
additive = new EObjectContainmentEList<Reference>(Reference.class, this, FhirPackage.SPECIMEN_TREATMENT__ADDITIVE);
}
return additive;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION:
return basicSetDescription(null, msgs);
case FhirPackage.SPECIMEN_TREATMENT__PROCEDURE:
return basicSetProcedure(null, msgs);
case FhirPackage.SPECIMEN_TREATMENT__ADDITIVE:
return ((InternalEList<?>)getAdditive()).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.SPECIMEN_TREATMENT__DESCRIPTION:
return getDescription();
case FhirPackage.SPECIMEN_TREATMENT__PROCEDURE:
return getProcedure();
case FhirPackage.SPECIMEN_TREATMENT__ADDITIVE:
return getAdditive();
}
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.SPECIMEN_TREATMENT__DESCRIPTION:
setDescription((org.hl7.fhir.String)newValue);
return;
case FhirPackage.SPECIMEN_TREATMENT__PROCEDURE:
setProcedure((CodeableConcept)newValue);
return;
case FhirPackage.SPECIMEN_TREATMENT__ADDITIVE:
getAdditive().clear();
getAdditive().addAll((Collection<? extends Reference>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION:
setDescription((org.hl7.fhir.String)null);
return;
case FhirPackage.SPECIMEN_TREATMENT__PROCEDURE:
setProcedure((CodeableConcept)null);
return;
case FhirPackage.SPECIMEN_TREATMENT__ADDITIVE:
getAdditive().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirPackage.SPECIMEN_TREATMENT__DESCRIPTION:
return description != null;
case FhirPackage.SPECIMEN_TREATMENT__PROCEDURE:
return procedure != null;
case FhirPackage.SPECIMEN_TREATMENT__ADDITIVE:
return additive != null && !additive.isEmpty();
}
return super.eIsSet(featureID);
}
} //SpecimenTreatmentImpl