/** * This file is protected by Copyright. * Please refer to the COPYRIGHT file distributed with this source distribution. * * This file is part of REDHAWK IDE. * * 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. * */ // BEGIN GENERATED CODE package gov.redhawk.eclipsecorba.idl.expressions.impl; import gov.redhawk.eclipsecorba.idl.expressions.Expression; import gov.redhawk.eclipsecorba.idl.expressions.ExpressionsPackage; import gov.redhawk.eclipsecorba.idl.expressions.UnaryExpression; import gov.redhawk.eclipsecorba.idl.expressions.UnaryType; 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; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Unary Expression</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link gov.redhawk.eclipsecorba.idl.expressions.impl.UnaryExpressionImpl#getExpr <em>Expr</em>}</li> * <li>{@link gov.redhawk.eclipsecorba.idl.expressions.impl.UnaryExpressionImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class UnaryExpressionImpl extends ExpressionImpl implements UnaryExpression { /** * The cached value of the '{@link #getExpr() <em>Expr</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getExpr() * @generated * @ordered */ protected Expression expr; /** * The default value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected static final UnaryType TYPE_EDEFAULT = UnaryType.NEGATIVE; /** * The cached value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected UnaryType type = TYPE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected UnaryExpressionImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ExpressionsPackage.Literals.UNARY_EXPRESSION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Expression getExpr() { return expr; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetExpr(Expression newExpr, NotificationChain msgs) { Expression oldExpr = expr; expr = newExpr; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ExpressionsPackage.UNARY_EXPRESSION__EXPR, oldExpr, newExpr); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setExpr(Expression newExpr) { if (newExpr != expr) { NotificationChain msgs = null; if (expr != null) msgs = ((InternalEObject)expr).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ExpressionsPackage.UNARY_EXPRESSION__EXPR, null, msgs); if (newExpr != null) msgs = ((InternalEObject)newExpr).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ExpressionsPackage.UNARY_EXPRESSION__EXPR, null, msgs); msgs = basicSetExpr(newExpr, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ExpressionsPackage.UNARY_EXPRESSION__EXPR, newExpr, newExpr)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public UnaryType getType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(UnaryType newType) { UnaryType oldType = type; type = newType == null ? TYPE_EDEFAULT : newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ExpressionsPackage.UNARY_EXPRESSION__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ExpressionsPackage.UNARY_EXPRESSION__EXPR: return basicSetExpr(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 ExpressionsPackage.UNARY_EXPRESSION__EXPR: return getExpr(); case ExpressionsPackage.UNARY_EXPRESSION__TYPE: return getType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ExpressionsPackage.UNARY_EXPRESSION__EXPR: setExpr((Expression)newValue); return; case ExpressionsPackage.UNARY_EXPRESSION__TYPE: setType((UnaryType)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ExpressionsPackage.UNARY_EXPRESSION__EXPR: setExpr((Expression)null); return; case ExpressionsPackage.UNARY_EXPRESSION__TYPE: setType(TYPE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ExpressionsPackage.UNARY_EXPRESSION__EXPR: return expr != null; case ExpressionsPackage.UNARY_EXPRESSION__TYPE: return type != TYPE_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(" (type: "); result.append(type); result.append(')'); return result.toString(); } } //UnaryExpressionImpl