/** */ 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.Type; import org.yakindu.base.types.TypeParameter; import org.yakindu.base.types.TypesPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Type Parameter</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.base.types.impl.TypeParameterImpl#getBound <em>Bound</em>}</li> * </ul> * * @generated */ public class TypeParameterImpl extends TypeImpl implements TypeParameter { /** * The cached value of the '{@link #getBound() <em>Bound</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getBound() * @generated * @ordered */ protected Type bound; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected TypeParameterImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TypesPackage.Literals.TYPE_PARAMETER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Type getBound() { if (bound != null && bound.eIsProxy()) { InternalEObject oldBound = (InternalEObject)bound; bound = (Type)eResolveProxy(oldBound); if (bound != oldBound) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, TypesPackage.TYPE_PARAMETER__BOUND, oldBound, bound)); } } return bound; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Type basicGetBound() { return bound; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setBound(Type newBound) { Type oldBound = bound; bound = newBound; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.TYPE_PARAMETER__BOUND, oldBound, bound)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case TypesPackage.TYPE_PARAMETER__BOUND: if (resolve) return getBound(); return basicGetBound(); } 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.TYPE_PARAMETER__BOUND: setBound((Type)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TypesPackage.TYPE_PARAMETER__BOUND: setBound((Type)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TypesPackage.TYPE_PARAMETER__BOUND: return bound != null; } return super.eIsSet(featureID); } } //TypeParameterImpl