/** * 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.types.impl; import gov.redhawk.eclipsecorba.idl.Comment; import gov.redhawk.eclipsecorba.idl.Commentable; import gov.redhawk.eclipsecorba.idl.Definition; import gov.redhawk.eclipsecorba.idl.Export; import gov.redhawk.eclipsecorba.idl.IdlPackage; import gov.redhawk.eclipsecorba.idl.IdlType; import gov.redhawk.eclipsecorba.idl.IdlTypeDcl; import gov.redhawk.eclipsecorba.idl.Typed; import gov.redhawk.eclipsecorba.idl.TypedElement; import gov.redhawk.eclipsecorba.idl.impl.DeclaratorImpl; import gov.redhawk.eclipsecorba.idl.types.Enumeration; import gov.redhawk.eclipsecorba.idl.types.TypesPackage; 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>Enumeration</b></em>'. * @since 6.0 * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link gov.redhawk.eclipsecorba.idl.types.impl.EnumerationImpl#getComment <em>Comment</em>}</li> * <li>{@link gov.redhawk.eclipsecorba.idl.types.impl.EnumerationImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class EnumerationImpl extends DeclaratorImpl implements Enumeration { /** * The cached value of the '{@link #getComment() <em>Comment</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getComment() * @generated * @ordered */ protected Comment comment; /** * The cached value of the '{@link #getType() <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected IdlType type; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EnumerationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TypesPackage.Literals.ENUMERATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Comment getComment() { return comment; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetComment(Comment newComment, NotificationChain msgs) { Comment oldComment = comment; comment = newComment; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, TypesPackage.ENUMERATION__COMMENT, oldComment, newComment); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setComment(Comment newComment) { if (newComment != comment) { NotificationChain msgs = null; if (comment != null) msgs = ((InternalEObject)comment).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - TypesPackage.ENUMERATION__COMMENT, null, msgs); if (newComment != null) msgs = ((InternalEObject)newComment).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - TypesPackage.ENUMERATION__COMMENT, null, msgs); msgs = basicSetComment(newComment, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.ENUMERATION__COMMENT, newComment, newComment)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IdlType getType() { if (type != null && type.eIsProxy()) { InternalEObject oldType = (InternalEObject)type; type = (IdlType)eResolveProxy(oldType); if (type != oldType) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, TypesPackage.ENUMERATION__TYPE, oldType, type)); } } return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public IdlType basicGetType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(IdlType newType) { IdlType oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TypesPackage.ENUMERATION__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case TypesPackage.ENUMERATION__COMMENT: return basicSetComment(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 TypesPackage.ENUMERATION__COMMENT: return getComment(); case TypesPackage.ENUMERATION__TYPE: if (resolve) return getType(); return basicGetType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case TypesPackage.ENUMERATION__COMMENT: setComment((Comment)newValue); return; case TypesPackage.ENUMERATION__TYPE: setType((IdlType)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TypesPackage.ENUMERATION__COMMENT: setComment((Comment)null); return; case TypesPackage.ENUMERATION__TYPE: setType((IdlType)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TypesPackage.ENUMERATION__COMMENT: return comment != null; case TypesPackage.ENUMERATION__TYPE: return type != null; } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass) { if (baseClass == Commentable.class) { switch (derivedFeatureID) { case TypesPackage.ENUMERATION__COMMENT: return IdlPackage.COMMENTABLE__COMMENT; default: return -1; } } if (baseClass == Definition.class) { switch (derivedFeatureID) { default: return -1; } } if (baseClass == IdlType.class) { switch (derivedFeatureID) { default: return -1; } } if (baseClass == Typed.class) { switch (derivedFeatureID) { case TypesPackage.ENUMERATION__TYPE: return IdlPackage.TYPED__TYPE; default: return -1; } } if (baseClass == TypedElement.class) { switch (derivedFeatureID) { default: return -1; } } if (baseClass == Export.class) { switch (derivedFeatureID) { default: return -1; } } if (baseClass == IdlTypeDcl.class) { switch (derivedFeatureID) { 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 == Commentable.class) { switch (baseFeatureID) { case IdlPackage.COMMENTABLE__COMMENT: return TypesPackage.ENUMERATION__COMMENT; default: return -1; } } if (baseClass == Definition.class) { switch (baseFeatureID) { default: return -1; } } if (baseClass == IdlType.class) { switch (baseFeatureID) { default: return -1; } } if (baseClass == Typed.class) { switch (baseFeatureID) { case IdlPackage.TYPED__TYPE: return TypesPackage.ENUMERATION__TYPE; default: return -1; } } if (baseClass == TypedElement.class) { switch (baseFeatureID) { default: return -1; } } if (baseClass == Export.class) { switch (baseFeatureID) { default: return -1; } } if (baseClass == IdlTypeDcl.class) { switch (baseFeatureID) { default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } } //EnumerationImpl