blob: 677862cffe9b9d490e15959c99ebec4fb39511ad [file] [log] [blame]
/**
* <copyright>
* Copyright (c) 2013 Willink Transformations, University of York, and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
* Adolfo Sanchez-Barbudo (University of York) - Bug397429
* </copyright>
*/
package org.eclipse.qvto.examples.pivot.qvtoperational.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.eclipse.ocl.pivot.OCLExpression;
import org.eclipse.ocl.pivot.Variable;
import org.eclipse.ocl.pivot.internal.CallExpImpl;
import org.eclipse.ocl.pivot.util.Visitor;
import org.eclipse.qvto.examples.pivot.qvtoperational.QVTOperationalPackage;
import org.eclipse.qvto.examples.pivot.qvtoperational.ResolveExp;
import org.eclipse.qvto.examples.pivot.qvtoperational.util.QVTOperationalVisitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Resolve Exp</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.qvto.examples.pivot.qvtoperational.impl.ResolveExpImpl#getCondition <em>Condition</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.qvtoperational.impl.ResolveExpImpl#isIsDeferred <em>Is Deferred</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.qvtoperational.impl.ResolveExpImpl#isIsInverse <em>Is Inverse</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.qvtoperational.impl.ResolveExpImpl#isOne <em>One</em>}</li>
* <li>{@link org.eclipse.qvto.examples.pivot.qvtoperational.impl.ResolveExpImpl#getTarget <em>Target</em>}</li>
* </ul>
*
* @generated
*/
public class ResolveExpImpl extends CallExpImpl implements ResolveExp {
/**
* The cached value of the '{@link #getCondition() <em>Condition</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCondition()
* @generated
* @ordered
*/
protected OCLExpression condition;
/**
* The default value of the '{@link #isIsDeferred() <em>Is Deferred</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isIsDeferred()
* @generated
* @ordered
*/
protected static final boolean IS_DEFERRED_EDEFAULT = false;
/**
* The cached value of the '{@link #isIsDeferred() <em>Is Deferred</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isIsDeferred()
* @generated
* @ordered
*/
protected boolean isDeferred = IS_DEFERRED_EDEFAULT;
/**
* The default value of the '{@link #isIsInverse() <em>Is Inverse</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isIsInverse()
* @generated
* @ordered
*/
protected static final boolean IS_INVERSE_EDEFAULT = false;
/**
* The cached value of the '{@link #isIsInverse() <em>Is Inverse</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isIsInverse()
* @generated
* @ordered
*/
protected boolean isInverse = IS_INVERSE_EDEFAULT;
/**
* The default value of the '{@link #isOne() <em>One</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isOne()
* @generated
* @ordered
*/
protected static final boolean ONE_EDEFAULT = false;
/**
* The cached value of the '{@link #isOne() <em>One</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isOne()
* @generated
* @ordered
*/
protected boolean one = ONE_EDEFAULT;
/**
* The cached value of the '{@link #getTarget() <em>Target</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTarget()
* @generated
* @ordered
*/
protected Variable target;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ResolveExpImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return QVTOperationalPackage.Literals.RESOLVE_EXP;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OCLExpression getCondition() {
return condition;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetCondition(OCLExpression newCondition, NotificationChain msgs) {
OCLExpression oldCondition = condition;
condition = newCondition;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__CONDITION, oldCondition, newCondition);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setCondition(OCLExpression newCondition) {
if (newCondition != condition) {
NotificationChain msgs = null;
if (condition != null)
msgs = ((InternalEObject)condition).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - QVTOperationalPackage.RESOLVE_EXP__CONDITION, null, msgs);
if (newCondition != null)
msgs = ((InternalEObject)newCondition).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - QVTOperationalPackage.RESOLVE_EXP__CONDITION, null, msgs);
msgs = basicSetCondition(newCondition, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__CONDITION, newCondition, newCondition));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isIsDeferred() {
return isDeferred;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIsDeferred(boolean newIsDeferred) {
boolean oldIsDeferred = isDeferred;
isDeferred = newIsDeferred;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__IS_DEFERRED, oldIsDeferred, isDeferred));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isIsInverse() {
return isInverse;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setIsInverse(boolean newIsInverse) {
boolean oldIsInverse = isInverse;
isInverse = newIsInverse;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__IS_INVERSE, oldIsInverse, isInverse));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isOne() {
return one;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setOne(boolean newOne) {
boolean oldOne = one;
one = newOne;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__ONE, oldOne, one));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public Variable getTarget() {
return target;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetTarget(Variable newTarget, NotificationChain msgs) {
Variable oldTarget = target;
target = newTarget;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__TARGET, oldTarget, newTarget);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setTarget(Variable newTarget) {
if (newTarget != target) {
NotificationChain msgs = null;
if (target != null)
msgs = ((InternalEObject)target).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - QVTOperationalPackage.RESOLVE_EXP__TARGET, null, msgs);
if (newTarget != null)
msgs = ((InternalEObject)newTarget).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - QVTOperationalPackage.RESOLVE_EXP__TARGET, null, msgs);
msgs = basicSetTarget(newTarget, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, QVTOperationalPackage.RESOLVE_EXP__TARGET, newTarget, newTarget));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case QVTOperationalPackage.RESOLVE_EXP__CONDITION:
return basicSetCondition(null, msgs);
case QVTOperationalPackage.RESOLVE_EXP__TARGET:
return basicSetTarget(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 QVTOperationalPackage.RESOLVE_EXP__CONDITION:
return getCondition();
case QVTOperationalPackage.RESOLVE_EXP__IS_DEFERRED:
return isIsDeferred();
case QVTOperationalPackage.RESOLVE_EXP__IS_INVERSE:
return isIsInverse();
case QVTOperationalPackage.RESOLVE_EXP__ONE:
return isOne();
case QVTOperationalPackage.RESOLVE_EXP__TARGET:
return getTarget();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case QVTOperationalPackage.RESOLVE_EXP__CONDITION:
setCondition((OCLExpression)newValue);
return;
case QVTOperationalPackage.RESOLVE_EXP__IS_DEFERRED:
setIsDeferred((Boolean)newValue);
return;
case QVTOperationalPackage.RESOLVE_EXP__IS_INVERSE:
setIsInverse((Boolean)newValue);
return;
case QVTOperationalPackage.RESOLVE_EXP__ONE:
setOne((Boolean)newValue);
return;
case QVTOperationalPackage.RESOLVE_EXP__TARGET:
setTarget((Variable)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case QVTOperationalPackage.RESOLVE_EXP__CONDITION:
setCondition((OCLExpression)null);
return;
case QVTOperationalPackage.RESOLVE_EXP__IS_DEFERRED:
setIsDeferred(IS_DEFERRED_EDEFAULT);
return;
case QVTOperationalPackage.RESOLVE_EXP__IS_INVERSE:
setIsInverse(IS_INVERSE_EDEFAULT);
return;
case QVTOperationalPackage.RESOLVE_EXP__ONE:
setOne(ONE_EDEFAULT);
return;
case QVTOperationalPackage.RESOLVE_EXP__TARGET:
setTarget((Variable)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case QVTOperationalPackage.RESOLVE_EXP__CONDITION:
return condition != null;
case QVTOperationalPackage.RESOLVE_EXP__IS_DEFERRED:
return isDeferred != IS_DEFERRED_EDEFAULT;
case QVTOperationalPackage.RESOLVE_EXP__IS_INVERSE:
return isInverse != IS_INVERSE_EDEFAULT;
case QVTOperationalPackage.RESOLVE_EXP__ONE:
return one != ONE_EDEFAULT;
case QVTOperationalPackage.RESOLVE_EXP__TARGET:
return target != null;
}
return super.eIsSet(featureID);
}
@Override
public String toString() {
return super.toString();
}
/**
* {@inheritDoc}
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public <R> R accept(Visitor<R> visitor) {
return (R) ((QVTOperationalVisitor<?>)visitor).visitResolveExp(this);
}
} //ResolveExpImpl