/******************************************************************************* * Copyright (c) 2010 Martin Schnabel <mb0@mb0.org>. * 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 ******************************************************************************/ package org.axdt.as3.model.impl; import org.axdt.as3.As3EPackage; import org.axdt.as3.model.As3ExpressionList; import org.axdt.as3.model.As3PostfixOperator; import org.axdt.as3.model.IIdentifier; 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; import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>As3 Postfix Operator</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.axdt.as3.model.impl.As3PostfixOperatorImpl#getIdentifier <em>Identifier</em>}</li> * <li>{@link org.axdt.as3.model.impl.As3PostfixOperatorImpl#getExpressions <em>Expressions</em>}</li> * </ul> * </p> * * @generated */ public abstract class As3PostfixOperatorImpl extends MinimalEObjectImpl.Container implements As3PostfixOperator { /** * A set of bit flags representing the values of boolean attributes and whether unsettable features have been set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ protected int flags = 0; /** * The cached value of the '{@link #getIdentifier() <em>Identifier</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getIdentifier() * @generated * @ordered */ protected IIdentifier identifier; /** * The cached value of the '{@link #getExpressions() <em>Expressions</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getExpressions() * @generated * @ordered */ protected As3ExpressionList expressions; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected As3PostfixOperatorImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return As3EPackage.Literals.AS3_POSTFIX_OPERATOR; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IIdentifier getIdentifier() { return identifier; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetIdentifier(IIdentifier newIdentifier, NotificationChain msgs) { IIdentifier oldIdentifier = identifier; identifier = newIdentifier; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER, oldIdentifier, newIdentifier); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setIdentifier(IIdentifier newIdentifier) { if (newIdentifier != identifier) { NotificationChain msgs = null; if (identifier != null) msgs = ((InternalEObject)identifier).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER, null, msgs); if (newIdentifier != null) msgs = ((InternalEObject)newIdentifier).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER, null, msgs); msgs = basicSetIdentifier(newIdentifier, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER, newIdentifier, newIdentifier)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public As3ExpressionList getExpressions() { return expressions; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetExpressions(As3ExpressionList newExpressions, NotificationChain msgs) { As3ExpressionList oldExpressions = expressions; expressions = newExpressions; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS, oldExpressions, newExpressions); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setExpressions(As3ExpressionList newExpressions) { if (newExpressions != expressions) { NotificationChain msgs = null; if (expressions != null) msgs = ((InternalEObject)expressions).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS, null, msgs); if (newExpressions != null) msgs = ((InternalEObject)newExpressions).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS, null, msgs); msgs = basicSetExpressions(newExpressions, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS, newExpressions, newExpressions)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER: return basicSetIdentifier(null, msgs); case As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS: return basicSetExpressions(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 As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER: return getIdentifier(); case As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS: return getExpressions(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER: setIdentifier((IIdentifier)newValue); return; case As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS: setExpressions((As3ExpressionList)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER: setIdentifier((IIdentifier)null); return; case As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS: setExpressions((As3ExpressionList)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case As3EPackage.AS3_POSTFIX_OPERATOR__IDENTIFIER: return identifier != null; case As3EPackage.AS3_POSTFIX_OPERATOR__EXPRESSIONS: return expressions != null; } return super.eIsSet(featureID); } } //As3PostfixOperatorImpl