/** */ package org.yakindu.base.types.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.yakindu.base.types.PrimitiveType; import org.yakindu.base.types.TypesPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Primitive Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.base.types.impl.PrimitiveTypeImpl#getBaseType <em>Base Type</em>}</li> * </ul> * * @generated */ public class PrimitiveTypeImpl extends TypeImpl implements PrimitiveType { /** * The cached value of the '{@link #getBaseType() <em>Base Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getBaseType() * @generated * @ordered */ protected PrimitiveType baseType; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PrimitiveTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TypesPackage.Literals.PRIMITIVE_TYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PrimitiveType getBaseType() { if (baseType != null && baseType.eIsProxy()) { InternalEObject oldBaseType = (InternalEObject)baseType; baseType = (PrimitiveType)eResolveProxy(oldBaseType); if (baseType != oldBaseType) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, TypesPackage.PRIMITIVE_TYPE__BASE_TYPE, oldBaseType, baseType)); } } return baseType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public PrimitiveType basicGetBaseType() { return baseType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setBaseType(PrimitiveType newBaseType) { PrimitiveType oldBaseType = baseType; baseType = newBaseType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.PRIMITIVE_TYPE__BASE_TYPE, oldBaseType, baseType)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case TypesPackage.PRIMITIVE_TYPE__BASE_TYPE: if (resolve) return getBaseType(); return basicGetBaseType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case TypesPackage.PRIMITIVE_TYPE__BASE_TYPE: setBaseType((PrimitiveType)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TypesPackage.PRIMITIVE_TYPE__BASE_TYPE: setBaseType((PrimitiveType)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TypesPackage.PRIMITIVE_TYPE__BASE_TYPE: return baseType != null; } return super.eIsSet(featureID); } } //PrimitiveTypeImpl