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

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

There is a newer version: 6.0.2
Show newest version
/**
 * 
 * 
 *
 * $Id$
 */
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.dom.DomPackage;
import org.openxma.dsl.dom.model.Expression;
import org.openxma.dsl.dom.model.QuantifiedExpression;

/**
 * 
 * An implementation of the model object 'Quantified Expression'.
 * 
 * 

* The following features are implemented: *

    *
  • {@link org.openxma.dsl.dom.model.impl.QuantifiedExpressionImpl#getQuantifier Quantifier}
  • *
  • {@link org.openxma.dsl.dom.model.impl.QuantifiedExpressionImpl#getExpression Expression}
  • *
  • {@link org.openxma.dsl.dom.model.impl.QuantifiedExpressionImpl#getName Name}
  • *
*

* * @generated */ public class QuantifiedExpressionImpl extends ExpressionImpl implements QuantifiedExpression { /** * The default value of the '{@link #getQuantifier() Quantifier}' attribute. * * * @see #getQuantifier() * @generated * @ordered */ protected static final String QUANTIFIER_EDEFAULT = null; /** * The cached value of the '{@link #getQuantifier() Quantifier}' attribute. * * * @see #getQuantifier() * @generated * @ordered */ protected String quantifier = QUANTIFIER_EDEFAULT; /** * The cached value of the '{@link #getExpression() Expression}' containment reference. * * * @see #getExpression() * @generated * @ordered */ protected Expression expression; /** * The default value of the '{@link #getName() Name}' attribute. * * * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() Name}' attribute. * * * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * * * @generated */ protected QuantifiedExpressionImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return DomPackage.Literals.QUANTIFIED_EXPRESSION; } /** * * * @generated */ public String getQuantifier() { return quantifier; } /** * * * @generated */ public void setQuantifier(String newQuantifier) { String oldQuantifier = quantifier; quantifier = newQuantifier; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.QUANTIFIED_EXPRESSION__QUANTIFIER, oldQuantifier, quantifier)); } /** * * * @generated */ public Expression getExpression() { return expression; } /** * * * @generated */ public NotificationChain basicSetExpression(Expression newExpression, NotificationChain msgs) { Expression oldExpression = expression; expression = newExpression; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION, oldExpression, newExpression); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setExpression(Expression newExpression) { if (newExpression != expression) { NotificationChain msgs = null; if (expression != null) msgs = ((InternalEObject)expression).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION, null, msgs); if (newExpression != null) msgs = ((InternalEObject)newExpression).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION, null, msgs); msgs = basicSetExpression(newExpression, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION, newExpression, newExpression)); } /** * * * @generated */ public String getName() { return name; } /** * * * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.QUANTIFIED_EXPRESSION__NAME, oldName, name)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case DomPackage.QUANTIFIED_EXPRESSION__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.QUANTIFIED_EXPRESSION__QUANTIFIER: return getQuantifier(); case DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION: return getExpression(); case DomPackage.QUANTIFIED_EXPRESSION__NAME: return getName(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case DomPackage.QUANTIFIED_EXPRESSION__QUANTIFIER: setQuantifier((String)newValue); return; case DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION: setExpression((Expression)newValue); return; case DomPackage.QUANTIFIED_EXPRESSION__NAME: setName((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DomPackage.QUANTIFIED_EXPRESSION__QUANTIFIER: setQuantifier(QUANTIFIER_EDEFAULT); return; case DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION: setExpression((Expression)null); return; case DomPackage.QUANTIFIED_EXPRESSION__NAME: setName(NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DomPackage.QUANTIFIED_EXPRESSION__QUANTIFIER: return QUANTIFIER_EDEFAULT == null ? quantifier != null : !QUANTIFIER_EDEFAULT.equals(quantifier); case DomPackage.QUANTIFIED_EXPRESSION__EXPRESSION: return expression != null; case DomPackage.QUANTIFIED_EXPRESSION__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (quantifier: "); result.append(quantifier); result.append(", name: "); result.append(name); result.append(')'); return result.toString(); } } //QuantifiedExpressionImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy