blob: 64f5376b8dd7427379575f7fd87667170014c999 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2018 IBM Corporation, Zeligsoft Inc., 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:
* IBM - Initial API and implementation
* Zeligsoft - Bug 207365 - Maintain currency with JDT compiler
*******************************************************************************/
package org.eclipse.ocl.ecore.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.EClassifier;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.ocl.ecore.CallExp;
import org.eclipse.ocl.ecore.EcorePackage;
import org.eclipse.ocl.ecore.utilities.ToStringVisitor;
import org.eclipse.ocl.expressions.ExpressionsPackage;
import org.eclipse.ocl.expressions.OCLExpression;
import org.eclipse.ocl.utilities.CallingASTNode;
import org.eclipse.ocl.utilities.UtilitiesPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Call Exp</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.ecore.impl.CallExpImpl#getPropertyStartPosition <em>Property Start Position</em>}</li>
* <li>{@link org.eclipse.ocl.ecore.impl.CallExpImpl#getPropertyEndPosition <em>Property End Position</em>}</li>
* <li>{@link org.eclipse.ocl.ecore.impl.CallExpImpl#getSource <em>Source</em>}</li>
* </ul>
*
* @generated
*/
public abstract class CallExpImpl
extends OCLExpressionImpl
implements CallExp {
/**
* The default value of the '{@link #getPropertyStartPosition() <em>Property Start Position</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getPropertyStartPosition()
* @generated
* @ordered
*/
protected static final int PROPERTY_START_POSITION_EDEFAULT = -1;
/**
* The cached value of the '{@link #getPropertyStartPosition() <em>Property Start Position</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getPropertyStartPosition()
* @generated
* @ordered
*/
protected int propertyStartPosition = PROPERTY_START_POSITION_EDEFAULT;
/**
* The default value of the '{@link #getPropertyEndPosition() <em>Property End Position</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getPropertyEndPosition()
* @generated
* @ordered
*/
protected static final int PROPERTY_END_POSITION_EDEFAULT = -1;
/**
* The cached value of the '{@link #getPropertyEndPosition() <em>Property End Position</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getPropertyEndPosition()
* @generated
* @ordered
*/
protected int propertyEndPosition = PROPERTY_END_POSITION_EDEFAULT;
/**
* The cached value of the '{@link #getSource() <em>Source</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getSource()
* @generated
* @ordered
*/
protected OCLExpression<EClassifier> source;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CallExpImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return EcorePackage.Literals.CALL_EXP;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getPropertyStartPosition() {
return propertyStartPosition;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setPropertyStartPosition(int newPropertyStartPosition) {
int oldPropertyStartPosition = propertyStartPosition;
propertyStartPosition = newPropertyStartPosition;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
EcorePackage.CALL_EXP__PROPERTY_START_POSITION,
oldPropertyStartPosition, propertyStartPosition));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getPropertyEndPosition() {
return propertyEndPosition;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setPropertyEndPosition(int newPropertyEndPosition) {
int oldPropertyEndPosition = propertyEndPosition;
propertyEndPosition = newPropertyEndPosition;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
EcorePackage.CALL_EXP__PROPERTY_END_POSITION,
oldPropertyEndPosition, propertyEndPosition));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public OCLExpression<EClassifier> getSource() {
return source;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetSource(
OCLExpression<EClassifier> newSource, NotificationChain msgs) {
OCLExpression<EClassifier> oldSource = source;
source = newSource;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET, EcorePackage.CALL_EXP__SOURCE, oldSource,
newSource);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setSource(OCLExpression<EClassifier> newSource) {
if (newSource != source) {
NotificationChain msgs = null;
if (source != null)
msgs = ((InternalEObject) source).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE - EcorePackage.CALL_EXP__SOURCE,
null, msgs);
if (newSource != null)
msgs = ((InternalEObject) newSource).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE - EcorePackage.CALL_EXP__SOURCE,
null, msgs);
msgs = basicSetSource(newSource, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
EcorePackage.CALL_EXP__SOURCE, newSource, newSource));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case EcorePackage.CALL_EXP__SOURCE :
return basicSetSource(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 EcorePackage.CALL_EXP__PROPERTY_START_POSITION :
return getPropertyStartPosition();
case EcorePackage.CALL_EXP__PROPERTY_END_POSITION :
return getPropertyEndPosition();
case EcorePackage.CALL_EXP__SOURCE :
return getSource();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case EcorePackage.CALL_EXP__PROPERTY_START_POSITION :
setPropertyStartPosition((Integer) newValue);
return;
case EcorePackage.CALL_EXP__PROPERTY_END_POSITION :
setPropertyEndPosition((Integer) newValue);
return;
case EcorePackage.CALL_EXP__SOURCE :
setSource((OCLExpression<EClassifier>) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case EcorePackage.CALL_EXP__PROPERTY_START_POSITION :
setPropertyStartPosition(PROPERTY_START_POSITION_EDEFAULT);
return;
case EcorePackage.CALL_EXP__PROPERTY_END_POSITION :
setPropertyEndPosition(PROPERTY_END_POSITION_EDEFAULT);
return;
case EcorePackage.CALL_EXP__SOURCE :
setSource((OCLExpression<EClassifier>) null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case EcorePackage.CALL_EXP__PROPERTY_START_POSITION :
return propertyStartPosition != PROPERTY_START_POSITION_EDEFAULT;
case EcorePackage.CALL_EXP__PROPERTY_END_POSITION :
return propertyEndPosition != PROPERTY_END_POSITION_EDEFAULT;
case EcorePackage.CALL_EXP__SOURCE :
return source != null;
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eBaseStructuralFeatureID(int derivedFeatureID,
Class<?> baseClass) {
if (baseClass == CallingASTNode.class) {
switch (derivedFeatureID) {
case EcorePackage.CALL_EXP__PROPERTY_START_POSITION :
return UtilitiesPackage.CALLING_AST_NODE__PROPERTY_START_POSITION;
case EcorePackage.CALL_EXP__PROPERTY_END_POSITION :
return UtilitiesPackage.CALLING_AST_NODE__PROPERTY_END_POSITION;
default :
return -1;
}
}
if (baseClass == org.eclipse.ocl.expressions.CallExp.class) {
switch (derivedFeatureID) {
case EcorePackage.CALL_EXP__SOURCE :
return ExpressionsPackage.CALL_EXP__SOURCE;
default :
return -1;
}
}
return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eDerivedStructuralFeatureID(int baseFeatureID,
Class<?> baseClass) {
if (baseClass == CallingASTNode.class) {
switch (baseFeatureID) {
case UtilitiesPackage.CALLING_AST_NODE__PROPERTY_START_POSITION :
return EcorePackage.CALL_EXP__PROPERTY_START_POSITION;
case UtilitiesPackage.CALLING_AST_NODE__PROPERTY_END_POSITION :
return EcorePackage.CALL_EXP__PROPERTY_END_POSITION;
default :
return -1;
}
}
if (baseClass == org.eclipse.ocl.expressions.CallExp.class) {
switch (baseFeatureID) {
case ExpressionsPackage.CALL_EXP__SOURCE :
return EcorePackage.CALL_EXP__SOURCE;
default :
return -1;
}
}
return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
@Override
public String toString() {
if (eIsProxy()) {
return super.toString();
}
return accept(ToStringVisitor.getInstance(this));
}
} //CallExpImpl