/******************************************************************************* * Copyright (c) 2013, 2015 CEA LIST 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: * E.D.Willink(CEA LIST) - Initial API and implementation *******************************************************************************/ package org.eclipse.ocl.examples.codegen.cgmodel.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EClassifier; import org.eclipse.emf.ecore.EOperation; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.eclipse.ocl.examples.codegen.cgmodel.CGEcoreOperation; import org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage; import org.eclipse.ocl.examples.codegen.cgmodel.util.CGModelVisitor; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>CG Ecore Operation</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGEcoreOperationImpl#getEOperation <em>EOperation</em>}</li> * </ul> * * @generated */ public class CGEcoreOperationImpl extends CGOperationImpl implements CGEcoreOperation { /** * The cached value of the '{@link #getEOperation() <em>EOperation</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getEOperation() * @generated * @ordered */ protected EOperation eOperation; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CGEcoreOperationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return CGModelPackage.Literals.CG_ECORE_OPERATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EOperation getEOperation() { if (eOperation != null && eOperation.eIsProxy()) { InternalEObject oldEOperation = (InternalEObject)eOperation; eOperation = (EOperation)eResolveProxy(oldEOperation); if (eOperation != oldEOperation) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, CGModelPackage.CG_ECORE_OPERATION__EOPERATION, oldEOperation, eOperation)); } } return eOperation; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EOperation basicGetEOperation() { return eOperation; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void setEOperation(EOperation newEOperation) { EOperation oldEOperation = eOperation; eOperation = newEOperation; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_ECORE_OPERATION__EOPERATION, oldEOperation, eOperation)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case CGModelPackage.CG_ECORE_OPERATION__EOPERATION: if (resolve) return getEOperation(); return basicGetEOperation(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CGModelPackage.CG_ECORE_OPERATION__EOPERATION: setEOperation((EOperation)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CGModelPackage.CG_ECORE_OPERATION__EOPERATION: setEOperation((EOperation)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CGModelPackage.CG_ECORE_OPERATION__EOPERATION: return eOperation != null; } return super.eIsSet(featureID); } /** * {@inheritDoc} * @generated */ @Override public <R> R accept(@NonNull CGModelVisitor<R> visitor) { return visitor.visitCGEcoreOperation(this); } /** * {@inheritDoc} * @generated */ @Override public @Nullable EClassifier getEcoreClassifier() { return eOperation != null ? eOperation.getEType() : null; } /** * {@inheritDoc} * @generated */ @Override public boolean isBoxed() { return false; } /** * {@inheritDoc} * @generated */ @Override public boolean isEcore() { return true; } /** * {@inheritDoc} * @generated */ @Override public boolean isUnboxed() { return false; } } //CGEcoreOperationImpl