blob: 0e8aa003eadda554b4304a9d420d859fd57c2c2e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson 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:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.resource.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.mdht.uml.fhir.core.datatype.Base;
import org.eclipse.mdht.uml.fhir.core.datatype.impl.BackboneElementImpl;
import org.eclipse.mdht.uml.fhir.core.resource.FhirResourcePackage;
import org.eclipse.mdht.uml.fhir.core.resource.GoalOutcome;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Goal Outcome</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.mdht.uml.fhir.core.resource.impl.GoalOutcomeImpl#getResultx <em>Resultx</em>}</li>
* </ul>
*
* @generated
*/
public class GoalOutcomeImpl extends BackboneElementImpl implements GoalOutcome {
/**
* The cached value of the '{@link #getResultx() <em>Resultx</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getResultx()
* @generated
* @ordered
*/
protected Base resultx;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected GoalOutcomeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FhirResourcePackage.eINSTANCE.getGoalOutcome();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Base getResultx() {
if (resultx != null && resultx.eIsProxy()) {
InternalEObject oldResultx = (InternalEObject)resultx;
resultx = (Base)eResolveProxy(oldResultx);
if (resultx != oldResultx) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, FhirResourcePackage.GOAL_OUTCOME__RESULTX, oldResultx, resultx));
}
}
return resultx;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Base basicGetResultx() {
return resultx;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setResultx(Base newResultx) {
Base oldResultx = resultx;
resultx = newResultx;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FhirResourcePackage.GOAL_OUTCOME__RESULTX, oldResultx, resultx));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case FhirResourcePackage.GOAL_OUTCOME__RESULTX:
if (resolve) return getResultx();
return basicGetResultx();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case FhirResourcePackage.GOAL_OUTCOME__RESULTX:
setResultx((Base)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FhirResourcePackage.GOAL_OUTCOME__RESULTX:
setResultx((Base)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FhirResourcePackage.GOAL_OUTCOME__RESULTX:
return resultx != null;
}
return super.eIsSet(featureID);
}
} //GoalOutcomeImpl