/** * Copyright (c) 2011 committers of YAKINDU 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: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.model.sgraph.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.yakindu.base.types.Declaration; import org.yakindu.base.types.impl.DeclarationImpl; import org.yakindu.sct.model.sgraph.ImportDeclaration; import org.yakindu.sct.model.sgraph.SGraphPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Import Declaration</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgraph.impl.ImportDeclarationImpl#getDeclaration <em>Declaration</em>}</li> * </ul> * * @generated */ public class ImportDeclarationImpl extends DeclarationImpl implements ImportDeclaration { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final String copyright = "Copyright (c) 2011 committers of YAKINDU and others.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\nContributors:\r\ncommitters of YAKINDU - initial API and implementation\r\n"; /** * The cached value of the '{@link #getDeclaration() <em>Declaration</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDeclaration() * @generated * @ordered */ protected Declaration declaration; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ImportDeclarationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SGraphPackage.Literals.IMPORT_DECLARATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Declaration getDeclaration() { if (declaration != null && declaration.eIsProxy()) { InternalEObject oldDeclaration = (InternalEObject)declaration; declaration = (Declaration)eResolveProxy(oldDeclaration); if (declaration != oldDeclaration) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, SGraphPackage.IMPORT_DECLARATION__DECLARATION, oldDeclaration, declaration)); } } return declaration; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Declaration basicGetDeclaration() { return declaration; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setDeclaration(Declaration newDeclaration) { Declaration oldDeclaration = declaration; declaration = newDeclaration; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SGraphPackage.IMPORT_DECLARATION__DECLARATION, oldDeclaration, declaration)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SGraphPackage.IMPORT_DECLARATION__DECLARATION: if (resolve) return getDeclaration(); return basicGetDeclaration(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case SGraphPackage.IMPORT_DECLARATION__DECLARATION: setDeclaration((Declaration)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SGraphPackage.IMPORT_DECLARATION__DECLARATION: setDeclaration((Declaration)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SGraphPackage.IMPORT_DECLARATION__DECLARATION: return declaration != null; } return super.eIsSet(featureID); } } //ImportDeclarationImpl