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

org.openxma.dsl.dom.model.impl.LikeExpressionImpl 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.LikeExpression;

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

* The following features are implemented: *

    *
  • {@link org.openxma.dsl.dom.model.impl.LikeExpressionImpl#getExpression Expression}
  • *
  • {@link org.openxma.dsl.dom.model.impl.LikeExpressionImpl#isNot Not}
  • *
  • {@link org.openxma.dsl.dom.model.impl.LikeExpressionImpl#getOperator Operator}
  • *
  • {@link org.openxma.dsl.dom.model.impl.LikeExpressionImpl#getLike Like}
  • *
  • {@link org.openxma.dsl.dom.model.impl.LikeExpressionImpl#getEscape Escape}
  • *
*

* * @generated */ public class LikeExpressionImpl extends ExpressionImpl implements LikeExpression { /** * The cached value of the '{@link #getExpression() Expression}' containment reference. * * * @see #getExpression() * @generated * @ordered */ protected Expression expression; /** * The default value of the '{@link #isNot() Not}' attribute. * * * @see #isNot() * @generated * @ordered */ protected static final boolean NOT_EDEFAULT = false; /** * The cached value of the '{@link #isNot() Not}' attribute. * * * @see #isNot() * @generated * @ordered */ protected boolean not = NOT_EDEFAULT; /** * The default value of the '{@link #getOperator() Operator}' attribute. * * * @see #getOperator() * @generated * @ordered */ protected static final String OPERATOR_EDEFAULT = null; /** * The cached value of the '{@link #getOperator() Operator}' attribute. * * * @see #getOperator() * @generated * @ordered */ protected String operator = OPERATOR_EDEFAULT; /** * The cached value of the '{@link #getLike() Like}' containment reference. * * * @see #getLike() * @generated * @ordered */ protected Expression like; /** * The cached value of the '{@link #getEscape() Escape}' containment reference. * * * @see #getEscape() * @generated * @ordered */ protected Expression escape; /** * * * @generated */ protected LikeExpressionImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return DomPackage.Literals.LIKE_EXPRESSION; } /** * * * @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.LIKE_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.LIKE_EXPRESSION__EXPRESSION, null, msgs); if (newExpression != null) msgs = ((InternalEObject)newExpression).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DomPackage.LIKE_EXPRESSION__EXPRESSION, null, msgs); msgs = basicSetExpression(newExpression, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__EXPRESSION, newExpression, newExpression)); } /** * * * @generated */ public boolean isNot() { return not; } /** * * * @generated */ public void setNot(boolean newNot) { boolean oldNot = not; not = newNot; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__NOT, oldNot, not)); } /** * * * @generated */ public String getOperator() { return operator; } /** * * * @generated */ public void setOperator(String newOperator) { String oldOperator = operator; operator = newOperator; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__OPERATOR, oldOperator, operator)); } /** * * * @generated */ public Expression getLike() { return like; } /** * * * @generated */ public NotificationChain basicSetLike(Expression newLike, NotificationChain msgs) { Expression oldLike = like; like = newLike; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__LIKE, oldLike, newLike); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setLike(Expression newLike) { if (newLike != like) { NotificationChain msgs = null; if (like != null) msgs = ((InternalEObject)like).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DomPackage.LIKE_EXPRESSION__LIKE, null, msgs); if (newLike != null) msgs = ((InternalEObject)newLike).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DomPackage.LIKE_EXPRESSION__LIKE, null, msgs); msgs = basicSetLike(newLike, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__LIKE, newLike, newLike)); } /** * * * @generated */ public Expression getEscape() { return escape; } /** * * * @generated */ public NotificationChain basicSetEscape(Expression newEscape, NotificationChain msgs) { Expression oldEscape = escape; escape = newEscape; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__ESCAPE, oldEscape, newEscape); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setEscape(Expression newEscape) { if (newEscape != escape) { NotificationChain msgs = null; if (escape != null) msgs = ((InternalEObject)escape).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - DomPackage.LIKE_EXPRESSION__ESCAPE, null, msgs); if (newEscape != null) msgs = ((InternalEObject)newEscape).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - DomPackage.LIKE_EXPRESSION__ESCAPE, null, msgs); msgs = basicSetEscape(newEscape, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DomPackage.LIKE_EXPRESSION__ESCAPE, newEscape, newEscape)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case DomPackage.LIKE_EXPRESSION__EXPRESSION: return basicSetExpression(null, msgs); case DomPackage.LIKE_EXPRESSION__LIKE: return basicSetLike(null, msgs); case DomPackage.LIKE_EXPRESSION__ESCAPE: return basicSetEscape(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case DomPackage.LIKE_EXPRESSION__EXPRESSION: return getExpression(); case DomPackage.LIKE_EXPRESSION__NOT: return isNot(); case DomPackage.LIKE_EXPRESSION__OPERATOR: return getOperator(); case DomPackage.LIKE_EXPRESSION__LIKE: return getLike(); case DomPackage.LIKE_EXPRESSION__ESCAPE: return getEscape(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case DomPackage.LIKE_EXPRESSION__EXPRESSION: setExpression((Expression)newValue); return; case DomPackage.LIKE_EXPRESSION__NOT: setNot((Boolean)newValue); return; case DomPackage.LIKE_EXPRESSION__OPERATOR: setOperator((String)newValue); return; case DomPackage.LIKE_EXPRESSION__LIKE: setLike((Expression)newValue); return; case DomPackage.LIKE_EXPRESSION__ESCAPE: setEscape((Expression)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DomPackage.LIKE_EXPRESSION__EXPRESSION: setExpression((Expression)null); return; case DomPackage.LIKE_EXPRESSION__NOT: setNot(NOT_EDEFAULT); return; case DomPackage.LIKE_EXPRESSION__OPERATOR: setOperator(OPERATOR_EDEFAULT); return; case DomPackage.LIKE_EXPRESSION__LIKE: setLike((Expression)null); return; case DomPackage.LIKE_EXPRESSION__ESCAPE: setEscape((Expression)null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DomPackage.LIKE_EXPRESSION__EXPRESSION: return expression != null; case DomPackage.LIKE_EXPRESSION__NOT: return not != NOT_EDEFAULT; case DomPackage.LIKE_EXPRESSION__OPERATOR: return OPERATOR_EDEFAULT == null ? operator != null : !OPERATOR_EDEFAULT.equals(operator); case DomPackage.LIKE_EXPRESSION__LIKE: return like != null; case DomPackage.LIKE_EXPRESSION__ESCAPE: return escape != null; } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (not: "); result.append(not); result.append(", operator: "); result.append(operator); result.append(')'); return result.toString(); } } //LikeExpressionImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy