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

org.eclipse.ocl.cst.impl.OCLMessageArgCSImpl Maven / Gradle / Ivy

/**
 * 
 * 
 * Copyright (c) 2005, 2008 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   IBM - Initial API and implementation
 *   Zeligsoft - Bug 243976
 *
 * 
 *
 * $Id: OCLMessageArgCSImpl.java,v 1.3 2008/11/30 22:11:37 cdamus Exp $
 */
package org.eclipse.ocl.cst.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.cst.CSTPackage;
import org.eclipse.ocl.cst.OCLExpressionCS;
import org.eclipse.ocl.cst.OCLMessageArgCS;
import org.eclipse.ocl.cst.TypeCS;

/**
 * 
 * An implementation of the model object 'OCL Message Arg CS'.
 * 
 * 

* The following features are implemented: *

    *
  • {@link org.eclipse.ocl.cst.impl.OCLMessageArgCSImpl#getTypeCS Type CS}
  • *
  • {@link org.eclipse.ocl.cst.impl.OCLMessageArgCSImpl#getExpression Expression}
  • *
*

* * @generated */ public class OCLMessageArgCSImpl extends CSTNodeImpl implements OCLMessageArgCS { /** * The cached value of the '{@link #getTypeCS() Type CS}' containment reference. * * * @see #getTypeCS() * @generated * @ordered */ protected TypeCS typeCS; /** * The cached value of the '{@link #getExpression() Expression}' containment reference. * * * @see #getExpression() * @generated * @ordered */ protected OCLExpressionCS expression; /** * * * @generated */ protected OCLMessageArgCSImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return CSTPackage.Literals.OCL_MESSAGE_ARG_CS; } /** * * * @generated */ public TypeCS getTypeCS() { return typeCS; } /** * * * @generated */ public NotificationChain basicSetTypeCS(TypeCS newTypeCS, NotificationChain msgs) { TypeCS oldTypeCS = typeCS; typeCS = newTypeCS; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS, oldTypeCS, newTypeCS); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setTypeCS(TypeCS newTypeCS) { if (newTypeCS != typeCS) { NotificationChain msgs = null; if (typeCS != null) msgs = ((InternalEObject) typeCS).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS, null, msgs); if (newTypeCS != null) msgs = ((InternalEObject) newTypeCS).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS, null, msgs); msgs = basicSetTypeCS(newTypeCS, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS, newTypeCS, newTypeCS)); } /** * * * @generated */ public OCLExpressionCS getExpression() { return expression; } /** * * * @generated */ public NotificationChain basicSetExpression(OCLExpressionCS newExpression, NotificationChain msgs) { OCLExpressionCS oldExpression = expression; expression = newExpression; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION, oldExpression, newExpression); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setExpression(OCLExpressionCS newExpression) { if (newExpression != expression) { NotificationChain msgs = null; if (expression != null) msgs = ((InternalEObject) expression) .eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION, null, msgs); if (newExpression != null) msgs = ((InternalEObject) newExpression) .eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION, null, msgs); msgs = basicSetExpression(newExpression, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION, newExpression, newExpression)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS : return basicSetTypeCS(null, msgs); case CSTPackage.OCL_MESSAGE_ARG_CS__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 CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS : return getTypeCS(); case CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION : return getExpression(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS : setTypeCS((TypeCS) newValue); return; case CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION : setExpression((OCLExpressionCS) newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS : setTypeCS((TypeCS) null); return; case CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION : setExpression((OCLExpressionCS) null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CSTPackage.OCL_MESSAGE_ARG_CS__TYPE_CS : return typeCS != null; case CSTPackage.OCL_MESSAGE_ARG_CS__EXPRESSION : return expression != null; } return super.eIsSet(featureID); } } //OCLMessageArgCSImpl




© 2015 - 2024 Weber Informatics LLC | Privacy Policy