/** */ package com.robotoworks.mechanoid.net.netModel.impl; import com.robotoworks.mechanoid.net.netModel.ComplexTypeLiteral; import com.robotoworks.mechanoid.net.netModel.NetModelPackage; import com.robotoworks.mechanoid.net.netModel.SkipMember; 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>Skip Member</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link com.robotoworks.mechanoid.net.netModel.impl.SkipMemberImpl#getLiteral <em>Literal</em>}</li> * </ul> * </p> * * @generated */ public class SkipMemberImpl extends MemberImpl implements SkipMember { /** * The cached value of the '{@link #getLiteral() <em>Literal</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getLiteral() * @generated * @ordered */ protected ComplexTypeLiteral literal; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SkipMemberImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return NetModelPackage.Literals.SKIP_MEMBER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ComplexTypeLiteral getLiteral() { return literal; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetLiteral(ComplexTypeLiteral newLiteral, NotificationChain msgs) { ComplexTypeLiteral oldLiteral = literal; literal = newLiteral; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, NetModelPackage.SKIP_MEMBER__LITERAL, oldLiteral, newLiteral); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setLiteral(ComplexTypeLiteral newLiteral) { if (newLiteral != literal) { NotificationChain msgs = null; if (literal != null) msgs = ((InternalEObject)literal).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - NetModelPackage.SKIP_MEMBER__LITERAL, null, msgs); if (newLiteral != null) msgs = ((InternalEObject)newLiteral).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - NetModelPackage.SKIP_MEMBER__LITERAL, null, msgs); msgs = basicSetLiteral(newLiteral, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, NetModelPackage.SKIP_MEMBER__LITERAL, newLiteral, newLiteral)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case NetModelPackage.SKIP_MEMBER__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.SKIP_MEMBER__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.SKIP_MEMBER__LITERAL: setLiteral((ComplexTypeLiteral)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case NetModelPackage.SKIP_MEMBER__LITERAL: setLiteral((ComplexTypeLiteral)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case NetModelPackage.SKIP_MEMBER__LITERAL: return literal != null; } return super.eIsSet(featureID); } } //SkipMemberImpl