blob: e17c8b6a8fe3841f005c7f3b5bd1a71159e04587 [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.FhirPackage;
import org.hl7.fhir.ImagingObjectSelectionInstance;
import org.hl7.fhir.ImagingObjectSelectionSeries;
import org.hl7.fhir.Oid;
import org.hl7.fhir.Uri;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Imaging Object Selection Series</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.hl7.fhir.impl.ImagingObjectSelectionSeriesImpl#getUid <em>Uid</em>}</li>
* <li>{@link org.hl7.fhir.impl.ImagingObjectSelectionSeriesImpl#getUrl <em>Url</em>}</li>
* <li>{@link org.hl7.fhir.impl.ImagingObjectSelectionSeriesImpl#getInstance <em>Instance</em>}</li>
* </ul>
*
* @generated
*/
public class ImagingObjectSelectionSeriesImpl extends BackboneElementImpl implements ImagingObjectSelectionSeries {
/**
* The cached value of the '{@link #getUid() <em>Uid</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getUid()
* @generated
* @ordered
*/
protected Oid uid;
/**
* The cached value of the '{@link #getUrl() <em>Url</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getUrl()
* @generated
* @ordered
*/
protected Uri url;
/**
* The cached value of the '{@link #getInstance() <em>Instance</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getInstance()
* @generated
* @ordered
*/
protected EList<ImagingObjectSelectionInstance> instance;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ImagingObjectSelectionSeriesImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirPackage.eINSTANCE.getImagingObjectSelectionSeries();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Oid getUid() {
return uid;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetUid(Oid newUid, NotificationChain msgs) {
Oid oldUid = uid;
uid = newUid;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID, oldUid, newUid);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setUid(Oid newUid) {
if (newUid != uid) {
NotificationChain msgs = null;
if (uid != null)
msgs = ((InternalEObject)uid).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID, null, msgs);
if (newUid != null)
msgs = ((InternalEObject)newUid).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID, null, msgs);
msgs = basicSetUid(newUid, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID, newUid, newUid));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Uri getUrl() {
return url;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetUrl(Uri newUrl, NotificationChain msgs) {
Uri oldUrl = url;
url = newUrl;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL, oldUrl, newUrl);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setUrl(Uri newUrl) {
if (newUrl != url) {
NotificationChain msgs = null;
if (url != null)
msgs = ((InternalEObject)url).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL, null, msgs);
if (newUrl != null)
msgs = ((InternalEObject)newUrl).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL, null, msgs);
msgs = basicSetUrl(newUrl, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL, newUrl, newUrl));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<ImagingObjectSelectionInstance> getInstance() {
if (instance == null) {
instance = new EObjectContainmentEList<ImagingObjectSelectionInstance>(ImagingObjectSelectionInstance.class, this, FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__INSTANCE);
}
return instance;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID:
return basicSetUid(null, msgs);
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL:
return basicSetUrl(null, msgs);
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__INSTANCE:
return ((InternalEList<?>)getInstance()).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.IMAGING_OBJECT_SELECTION_SERIES__UID:
return getUid();
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL:
return getUrl();
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__INSTANCE:
return getInstance();
}
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.IMAGING_OBJECT_SELECTION_SERIES__UID:
setUid((Oid)newValue);
return;
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL:
setUrl((Uri)newValue);
return;
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__INSTANCE:
getInstance().clear();
getInstance().addAll((Collection<? extends ImagingObjectSelectionInstance>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID:
setUid((Oid)null);
return;
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL:
setUrl((Uri)null);
return;
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__INSTANCE:
getInstance().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__UID:
return uid != null;
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__URL:
return url != null;
case FhirPackage.IMAGING_OBJECT_SELECTION_SERIES__INSTANCE:
return instance != null && !instance.isEmpty();
}
return super.eIsSet(featureID);
}
} //ImagingObjectSelectionSeriesImpl