/** * <copyright> * </copyright> * * $Id$ */ package org.dresdenocl.language.ocl.impl; import java.util.Collection; import org.dresdenocl.language.ocl.OclExpressionCS; import org.dresdenocl.language.ocl.OclPackage; import org.dresdenocl.language.ocl.OperationCallBaseExpCS; import org.dresdenocl.pivotmodel.Operation; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Operation Call Base Exp CS</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.dresdenocl.language.ocl.impl.OperationCallBaseExpCSImpl#getOperationName <em>Operation Name</em>}</li> * <li>{@link org.dresdenocl.language.ocl.impl.OperationCallBaseExpCSImpl#getArguments <em>Arguments</em>}</li> * <li>{@link org.dresdenocl.language.ocl.impl.OperationCallBaseExpCSImpl#isIsMarkedPre <em>Is Marked Pre</em>}</li> * </ul> * </p> * * @generated */ public class OperationCallBaseExpCSImpl extends EObjectImpl implements OperationCallBaseExpCS { /** * The cached value of the '{@link #getOperationName() <em>Operation Name</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getOperationName() * @generated * @ordered */ protected Operation operationName; /** * The cached value of the '{@link #getArguments() <em>Arguments</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getArguments() * @generated * @ordered */ protected EList<OclExpressionCS> arguments; /** * The default value of the '{@link #isIsMarkedPre() <em>Is Marked Pre</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isIsMarkedPre() * @generated * @ordered */ protected static final boolean IS_MARKED_PRE_EDEFAULT = false; /** * The cached value of the '{@link #isIsMarkedPre() <em>Is Marked Pre</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isIsMarkedPre() * @generated * @ordered */ protected boolean isMarkedPre = IS_MARKED_PRE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected OperationCallBaseExpCSImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return OclPackage.Literals.OPERATION_CALL_BASE_EXP_CS; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Operation getOperationName() { if (operationName != null && operationName.eIsProxy()) { InternalEObject oldOperationName = (InternalEObject)operationName; operationName = (Operation)eResolveProxy(oldOperationName); if (operationName != oldOperationName) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, OclPackage.OPERATION_CALL_BASE_EXP_CS__OPERATION_NAME, oldOperationName, operationName)); } } return operationName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Operation basicGetOperationName() { return operationName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setOperationName(Operation newOperationName) { Operation oldOperationName = operationName; operationName = newOperationName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OclPackage.OPERATION_CALL_BASE_EXP_CS__OPERATION_NAME, oldOperationName, operationName)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<OclExpressionCS> getArguments() { if (arguments == null) { arguments = new EObjectContainmentEList<OclExpressionCS>(OclExpressionCS.class, this, OclPackage.OPERATION_CALL_BASE_EXP_CS__ARGUMENTS); } return arguments; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isIsMarkedPre() { return isMarkedPre; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setIsMarkedPre(boolean newIsMarkedPre) { boolean oldIsMarkedPre = isMarkedPre; isMarkedPre = newIsMarkedPre; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OclPackage.OPERATION_CALL_BASE_EXP_CS__IS_MARKED_PRE, oldIsMarkedPre, isMarkedPre)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case OclPackage.OPERATION_CALL_BASE_EXP_CS__ARGUMENTS: return ((InternalEList<?>)getArguments()).basicRemove(otherEnd, 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 OclPackage.OPERATION_CALL_BASE_EXP_CS__OPERATION_NAME: if (resolve) return getOperationName(); return basicGetOperationName(); case OclPackage.OPERATION_CALL_BASE_EXP_CS__ARGUMENTS: return getArguments(); case OclPackage.OPERATION_CALL_BASE_EXP_CS__IS_MARKED_PRE: return isIsMarkedPre(); } 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 OclPackage.OPERATION_CALL_BASE_EXP_CS__OPERATION_NAME: setOperationName((Operation)newValue); return; case OclPackage.OPERATION_CALL_BASE_EXP_CS__ARGUMENTS: getArguments().clear(); getArguments().addAll((Collection<? extends OclExpressionCS>)newValue); return; case OclPackage.OPERATION_CALL_BASE_EXP_CS__IS_MARKED_PRE: setIsMarkedPre((Boolean)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case OclPackage.OPERATION_CALL_BASE_EXP_CS__OPERATION_NAME: setOperationName((Operation)null); return; case OclPackage.OPERATION_CALL_BASE_EXP_CS__ARGUMENTS: getArguments().clear(); return; case OclPackage.OPERATION_CALL_BASE_EXP_CS__IS_MARKED_PRE: setIsMarkedPre(IS_MARKED_PRE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case OclPackage.OPERATION_CALL_BASE_EXP_CS__OPERATION_NAME: return operationName != null; case OclPackage.OPERATION_CALL_BASE_EXP_CS__ARGUMENTS: return arguments != null && !arguments.isEmpty(); case OclPackage.OPERATION_CALL_BASE_EXP_CS__IS_MARKED_PRE: return isMarkedPre != IS_MARKED_PRE_EDEFAULT; } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (isMarkedPre: "); result.append(isMarkedPre); result.append(')'); return result.toString(); } } //OperationCallBaseExpCSImpl