/** */ package com.robotoworks.mechanoid.net.netModel.impl; import com.robotoworks.mechanoid.net.netModel.EnumTypeDeclaration; import com.robotoworks.mechanoid.net.netModel.EnumTypeLiteral; import com.robotoworks.mechanoid.net.netModel.IntegerType; import com.robotoworks.mechanoid.net.netModel.NetModelPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Enum Type Declaration</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link com.robotoworks.mechanoid.net.netModel.impl.EnumTypeDeclarationImpl#getSuperType <em>Super Type</em>}</li> * <li>{@link com.robotoworks.mechanoid.net.netModel.impl.EnumTypeDeclarationImpl#getLiteral <em>Literal</em>}</li> * </ul> * </p> * * @generated */ public class EnumTypeDeclarationImpl extends UserTypeDeclarationImpl implements EnumTypeDeclaration { /** * The cached value of the '{@link #getSuperType() <em>Super Type</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSuperType() * @generated * @ordered */ protected IntegerType superType; /** * The cached value of the '{@link #getLiteral() <em>Literal</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getLiteral() * @generated * @ordered */ protected EnumTypeLiteral literal; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EnumTypeDeclarationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return NetModelPackage.Literals.ENUM_TYPE_DECLARATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IntegerType getSuperType() { return superType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetSuperType(IntegerType newSuperType, NotificationChain msgs) { IntegerType oldSuperType = superType; superType = newSuperType; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE, oldSuperType, newSuperType); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setSuperType(IntegerType newSuperType) { if (newSuperType != superType) { NotificationChain msgs = null; if (superType != null) msgs = ((InternalEObject)superType).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE, null, msgs); if (newSuperType != null) msgs = ((InternalEObject)newSuperType).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE, null, msgs); msgs = basicSetSuperType(newSuperType, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE, newSuperType, newSuperType)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EnumTypeLiteral getLiteral() { return literal; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetLiteral(EnumTypeLiteral newLiteral, NotificationChain msgs) { EnumTypeLiteral oldLiteral = literal; literal = newLiteral; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL, oldLiteral, newLiteral); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setLiteral(EnumTypeLiteral newLiteral) { if (newLiteral != literal) { NotificationChain msgs = null; if (literal != null) msgs = ((InternalEObject)literal).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL, null, msgs); if (newLiteral != null) msgs = ((InternalEObject)newLiteral).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL, null, msgs); msgs = basicSetLiteral(newLiteral, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL, newLiteral, newLiteral)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE: return basicSetSuperType(null, msgs); case NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL: return basicSetLiteral(null, 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 NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE: return getSuperType(); case NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL: return getLiteral(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE: setSuperType((IntegerType)newValue); return; case NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL: setLiteral((EnumTypeLiteral)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE: setSuperType((IntegerType)null); return; case NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL: setLiteral((EnumTypeLiteral)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case NetModelPackage.ENUM_TYPE_DECLARATION__SUPER_TYPE: return superType != null; case NetModelPackage.ENUM_TYPE_DECLARATION__LITERAL: return literal != null; } return super.eIsSet(featureID); } } //EnumTypeDeclarationImpl