All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openxma.dsl.dom.model.impl.TransientFlagImpl Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id: TransientFlagImpl.java 10224 2013-01-04 15:48:48Z dschwarz $
 */
package org.openxma.dsl.dom.model.impl;

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.openxma.dsl.core.model.BoolLiteral;
import org.openxma.dsl.dom.DomPackage;
import org.openxma.dsl.dom.model.TransientFlag;

/**
 * 
 * An implementation of the model object 'Transient Flag'.
 * 
 * 

* The following features are implemented: *

    *
  • {@link org.openxma.dsl.dom.model.impl.TransientFlagImpl#getExpression Expression}
  • *
*

* * @generated */ public class TransientFlagImpl extends AttributeFlagImpl implements TransientFlag { /** * The cached value of the '{@link #getExpression() Expression}' containment reference. * * * @see #getExpression() * @generated * @ordered */ protected BoolLiteral expression; /** * * * @generated */ protected TransientFlagImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return DomPackage.Literals.TRANSIENT_FLAG; } /** * * * @generated */ public BoolLiteral getExpression() { return expression; } /** * * * @generated */ public NotificationChain basicSetExpression(BoolLiteral newExpression, NotificationChain msgs) { BoolLiteral oldExpression = expression; expression = newExpression; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DomPackage.TRANSIENT_FLAG__EXPRESSION, oldExpression, newExpression); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setExpression(BoolLiteral newExpression) { if (newExpression != expression) { NotificationChain msgs = null; if (expression != null) msgs = ((InternalEObject)expression).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DomPackage.TRANSIENT_FLAG__EXPRESSION, null, msgs); if (newExpression != null) msgs = ((InternalEObject)newExpression).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DomPackage.TRANSIENT_FLAG__EXPRESSION, null, msgs); msgs = basicSetExpression(newExpression, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.TRANSIENT_FLAG__EXPRESSION, newExpression, newExpression)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case DomPackage.TRANSIENT_FLAG__EXPRESSION: return basicSetExpression(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case DomPackage.TRANSIENT_FLAG__EXPRESSION: return getExpression(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case DomPackage.TRANSIENT_FLAG__EXPRESSION: setExpression((BoolLiteral)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DomPackage.TRANSIENT_FLAG__EXPRESSION: setExpression((BoolLiteral)null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DomPackage.TRANSIENT_FLAG__EXPRESSION: return expression != null; } return super.eIsSet(featureID); } } //TransientFlagImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy