All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2009, 2011 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.openhealthtools.mdht.uml.cda.impl;

import java.util.Collection;
import java.util.Map;

import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.DiagnosticChain;
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.openhealthtools.mdht.uml.cda.AssignedCustodian;
import org.openhealthtools.mdht.uml.cda.CDAPackage;
import org.openhealthtools.mdht.uml.cda.CustodianOrganization;
import org.openhealthtools.mdht.uml.cda.InfrastructureRootTypeId;
import org.openhealthtools.mdht.uml.cda.operations.AssignedCustodianOperations;
import org.openhealthtools.mdht.uml.hl7.datatypes.CS;
import org.openhealthtools.mdht.uml.hl7.datatypes.II;
import org.openhealthtools.mdht.uml.hl7.rim.impl.RoleImpl;
import org.openhealthtools.mdht.uml.hl7.vocab.NullFlavor;
import org.openhealthtools.mdht.uml.hl7.vocab.RoleClassAssignedEntity;

/**
 * 
 * An implementation of the model object 'Assigned Custodian'.
 * 
 * 

* The following features are implemented: *

    *
  • {@link org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl#getRealmCodes Realm Code}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl#getTypeId Type Id}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl#getTemplateIds Template Id}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl#getRepresentedCustodianOrganization Represented Custodian Organization}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl#getNullFlavor Null Flavor}
  • *
  • {@link org.openhealthtools.mdht.uml.cda.impl.AssignedCustodianImpl#getClassCode Class Code}
  • *
*

* * @generated */ public class AssignedCustodianImpl extends RoleImpl implements AssignedCustodian { /** * The cached value of the '{@link #getRealmCodes() Realm Code}' containment reference list. * * * @see #getRealmCodes() * @generated * @ordered */ protected EList realmCodes; /** * The cached value of the '{@link #getTypeId() Type Id}' containment reference. * * * @see #getTypeId() * @generated * @ordered */ protected InfrastructureRootTypeId typeId; /** * The cached value of the '{@link #getTemplateIds() Template Id}' containment reference list. * * * @see #getTemplateIds() * @generated * @ordered */ protected EList templateIds; /** * The cached value of the '{@link #getRepresentedCustodianOrganization() Represented Custodian Organization}' containment reference. * * * @see #getRepresentedCustodianOrganization() * @generated * @ordered */ protected CustodianOrganization representedCustodianOrganization; /** * The default value of the '{@link #getNullFlavor() Null Flavor}' attribute. * * * @see #getNullFlavor() * @generated * @ordered */ protected static final NullFlavor NULL_FLAVOR_EDEFAULT = NullFlavor.ASKU; /** * The cached value of the '{@link #getNullFlavor() Null Flavor}' attribute. * * * @see #getNullFlavor() * @generated * @ordered */ protected NullFlavor nullFlavor = NULL_FLAVOR_EDEFAULT; /** * This is true if the Null Flavor attribute has been set. * * * @generated * @ordered */ protected boolean nullFlavorESet; /** * The default value of the '{@link #getClassCode() Class Code}' attribute. * * * @see #getClassCode() * @generated * @ordered */ protected static final RoleClassAssignedEntity CLASS_CODE_EDEFAULT = RoleClassAssignedEntity.ASSIGNED; /** * The cached value of the '{@link #getClassCode() Class Code}' attribute. * * * @see #getClassCode() * @generated * @ordered */ protected RoleClassAssignedEntity classCode = CLASS_CODE_EDEFAULT; /** * This is true if the Class Code attribute has been set. * * * @generated * @ordered */ protected boolean classCodeESet; /** * * * @generated */ protected AssignedCustodianImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return CDAPackage.Literals.ASSIGNED_CUSTODIAN; } /** * * * @generated */ @Override public EList getRealmCodes() { if (realmCodes == null) { realmCodes = new EObjectContainmentEList(CS.class, this, CDAPackage.ASSIGNED_CUSTODIAN__REALM_CODE); } return realmCodes; } /** * * * @generated */ @Override public InfrastructureRootTypeId getTypeId() { return typeId; } /** * * * @generated */ public NotificationChain basicSetTypeId(InfrastructureRootTypeId newTypeId, NotificationChain msgs) { InfrastructureRootTypeId oldTypeId = typeId; typeId = newTypeId; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl( this, Notification.SET, CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID, oldTypeId, newTypeId); if (msgs == null) { msgs = notification; } else { msgs.add(notification); } } return msgs; } /** * * * @generated */ public void setTypeId(InfrastructureRootTypeId newTypeId) { if (newTypeId != typeId) { NotificationChain msgs = null; if (typeId != null) { msgs = ((InternalEObject) typeId).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID, null, msgs); } if (newTypeId != null) { msgs = ((InternalEObject) newTypeId).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID, null, msgs); } msgs = basicSetTypeId(newTypeId, msgs); if (msgs != null) { msgs.dispatch(); } } else if (eNotificationRequired()) { eNotify(new ENotificationImpl( this, Notification.SET, CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID, newTypeId, newTypeId)); } } /** * * * @generated */ @Override public EList getTemplateIds() { if (templateIds == null) { templateIds = new EObjectContainmentEList(II.class, this, CDAPackage.ASSIGNED_CUSTODIAN__TEMPLATE_ID); } return templateIds; } /** * * * @generated */ public CustodianOrganization getRepresentedCustodianOrganization() { return representedCustodianOrganization; } /** * * * @generated */ public NotificationChain basicSetRepresentedCustodianOrganization( CustodianOrganization newRepresentedCustodianOrganization, NotificationChain msgs) { CustodianOrganization oldRepresentedCustodianOrganization = representedCustodianOrganization; representedCustodianOrganization = newRepresentedCustodianOrganization; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl( this, Notification.SET, CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION, oldRepresentedCustodianOrganization, newRepresentedCustodianOrganization); if (msgs == null) { msgs = notification; } else { msgs.add(notification); } } return msgs; } /** * * * @generated */ public void setRepresentedCustodianOrganization(CustodianOrganization newRepresentedCustodianOrganization) { if (newRepresentedCustodianOrganization != representedCustodianOrganization) { NotificationChain msgs = null; if (representedCustodianOrganization != null) { msgs = ((InternalEObject) representedCustodianOrganization).eInverseRemove( this, EOPPOSITE_FEATURE_BASE - CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION, null, msgs); } if (newRepresentedCustodianOrganization != null) { msgs = ((InternalEObject) newRepresentedCustodianOrganization).eInverseAdd( this, EOPPOSITE_FEATURE_BASE - CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION, null, msgs); } msgs = basicSetRepresentedCustodianOrganization(newRepresentedCustodianOrganization, msgs); if (msgs != null) { msgs.dispatch(); } } else if (eNotificationRequired()) { eNotify(new ENotificationImpl( this, Notification.SET, CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION, newRepresentedCustodianOrganization, newRepresentedCustodianOrganization)); } } /** * * * @generated */ @Override public NullFlavor getNullFlavor() { return nullFlavor; } /** * * * @generated */ public void setNullFlavor(NullFlavor newNullFlavor) { NullFlavor oldNullFlavor = nullFlavor; nullFlavor = newNullFlavor == null ? NULL_FLAVOR_EDEFAULT : newNullFlavor; boolean oldNullFlavorESet = nullFlavorESet; nullFlavorESet = true; if (eNotificationRequired()) { eNotify(new ENotificationImpl( this, Notification.SET, CDAPackage.ASSIGNED_CUSTODIAN__NULL_FLAVOR, oldNullFlavor, nullFlavor, !oldNullFlavorESet)); } } /** * * * @generated */ public void unsetNullFlavor() { NullFlavor oldNullFlavor = nullFlavor; boolean oldNullFlavorESet = nullFlavorESet; nullFlavor = NULL_FLAVOR_EDEFAULT; nullFlavorESet = false; if (eNotificationRequired()) { eNotify(new ENotificationImpl( this, Notification.UNSET, CDAPackage.ASSIGNED_CUSTODIAN__NULL_FLAVOR, oldNullFlavor, NULL_FLAVOR_EDEFAULT, oldNullFlavorESet)); } } /** * * * @generated */ public boolean isSetNullFlavor() { return nullFlavorESet; } /** * * * @generated */ @Override public RoleClassAssignedEntity getClassCode() { return classCode; } /** * * * @generated */ public void setClassCode(RoleClassAssignedEntity newClassCode) { RoleClassAssignedEntity oldClassCode = classCode; classCode = newClassCode == null ? CLASS_CODE_EDEFAULT : newClassCode; boolean oldClassCodeESet = classCodeESet; classCodeESet = true; if (eNotificationRequired()) { eNotify(new ENotificationImpl( this, Notification.SET, CDAPackage.ASSIGNED_CUSTODIAN__CLASS_CODE, oldClassCode, classCode, !oldClassCodeESet)); } } /** * * * @generated */ public void unsetClassCode() { RoleClassAssignedEntity oldClassCode = classCode; boolean oldClassCodeESet = classCodeESet; classCode = CLASS_CODE_EDEFAULT; classCodeESet = false; if (eNotificationRequired()) { eNotify(new ENotificationImpl( this, Notification.UNSET, CDAPackage.ASSIGNED_CUSTODIAN__CLASS_CODE, oldClassCode, CLASS_CODE_EDEFAULT, oldClassCodeESet)); } } /** * * * @generated */ public boolean isSetClassCode() { return classCodeESet; } /** * * * @generated */ public boolean validateClassCode(DiagnosticChain diagnostics, Map context) { return AssignedCustodianOperations.validateClassCode(this, diagnostics, context); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CDAPackage.ASSIGNED_CUSTODIAN__REALM_CODE: return ((InternalEList) getRealmCodes()).basicRemove(otherEnd, msgs); case CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID: return basicSetTypeId(null, msgs); case CDAPackage.ASSIGNED_CUSTODIAN__TEMPLATE_ID: return ((InternalEList) getTemplateIds()).basicRemove(otherEnd, msgs); case CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION: return basicSetRepresentedCustodianOrganization(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case CDAPackage.ASSIGNED_CUSTODIAN__REALM_CODE: return getRealmCodes(); case CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID: return getTypeId(); case CDAPackage.ASSIGNED_CUSTODIAN__TEMPLATE_ID: return getTemplateIds(); case CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION: return getRepresentedCustodianOrganization(); case CDAPackage.ASSIGNED_CUSTODIAN__NULL_FLAVOR: return getNullFlavor(); case CDAPackage.ASSIGNED_CUSTODIAN__CLASS_CODE: return getClassCode(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CDAPackage.ASSIGNED_CUSTODIAN__REALM_CODE: getRealmCodes().clear(); getRealmCodes().addAll((Collection) newValue); return; case CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID: setTypeId((InfrastructureRootTypeId) newValue); return; case CDAPackage.ASSIGNED_CUSTODIAN__TEMPLATE_ID: getTemplateIds().clear(); getTemplateIds().addAll((Collection) newValue); return; case CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION: setRepresentedCustodianOrganization((CustodianOrganization) newValue); return; case CDAPackage.ASSIGNED_CUSTODIAN__NULL_FLAVOR: setNullFlavor((NullFlavor) newValue); return; case CDAPackage.ASSIGNED_CUSTODIAN__CLASS_CODE: setClassCode((RoleClassAssignedEntity) newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CDAPackage.ASSIGNED_CUSTODIAN__REALM_CODE: getRealmCodes().clear(); return; case CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID: setTypeId((InfrastructureRootTypeId) null); return; case CDAPackage.ASSIGNED_CUSTODIAN__TEMPLATE_ID: getTemplateIds().clear(); return; case CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION: setRepresentedCustodianOrganization((CustodianOrganization) null); return; case CDAPackage.ASSIGNED_CUSTODIAN__NULL_FLAVOR: unsetNullFlavor(); return; case CDAPackage.ASSIGNED_CUSTODIAN__CLASS_CODE: unsetClassCode(); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CDAPackage.ASSIGNED_CUSTODIAN__REALM_CODE: return realmCodes != null && !realmCodes.isEmpty(); case CDAPackage.ASSIGNED_CUSTODIAN__TYPE_ID: return typeId != null; case CDAPackage.ASSIGNED_CUSTODIAN__TEMPLATE_ID: return templateIds != null && !templateIds.isEmpty(); case CDAPackage.ASSIGNED_CUSTODIAN__REPRESENTED_CUSTODIAN_ORGANIZATION: return representedCustodianOrganization != null; case CDAPackage.ASSIGNED_CUSTODIAN__NULL_FLAVOR: return isSetNullFlavor(); case CDAPackage.ASSIGNED_CUSTODIAN__CLASS_CODE: return isSetClassCode(); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) { return super.toString(); } StringBuffer result = new StringBuffer(super.toString()); result.append(" (nullFlavor: "); if (nullFlavorESet) { result.append(nullFlavor); } else { result.append(""); } result.append(", classCode: "); if (classCodeESet) { result.append(classCode); } else { result.append(""); } result.append(')'); return result.toString(); } } // AssignedCustodianImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy