/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.mapping.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.EStructuralFeature; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.eef.mapping.EMFPropertyBinding; import org.eclipse.emf.eef.mapping.MappingPackage; import org.eclipse.emf.eef.mapping.navigation.ModelNavigation; import org.eclipse.emf.eef.mapping.settings.EditorSettings; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>EMF Property Binding</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.emf.eef.mapping.impl.EMFPropertyBindingImpl#getModel <em>Model</em>}</li> * <li>{@link org.eclipse.emf.eef.mapping.impl.EMFPropertyBindingImpl#getNavigation <em>Navigation</em>}</li> * <li>{@link org.eclipse.emf.eef.mapping.impl.EMFPropertyBindingImpl#getEditorSetting <em>Editor Setting</em>}</li> * </ul> * </p> * * @generated */ public class EMFPropertyBindingImpl extends AbstractPropertyBindingImpl implements EMFPropertyBinding { /** * The cached value of the '{@link #getModel() <em>Model</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getModel() * @generated * @ordered */ protected EStructuralFeature model; /** * The cached value of the '{@link #getNavigation() <em>Navigation</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNavigation() * @generated * @ordered */ protected ModelNavigation navigation; /** * The cached value of the '{@link #getEditorSetting() <em>Editor Setting</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getEditorSetting() * @generated * @ordered */ protected EditorSettings editorSetting; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EMFPropertyBindingImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return MappingPackage.Literals.EMF_PROPERTY_BINDING; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EStructuralFeature getModel() { if (model != null && model.eIsProxy()) { InternalEObject oldModel = (InternalEObject) model; model = (EStructuralFeature) eResolveProxy(oldModel); if (model != oldModel) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, MappingPackage.EMF_PROPERTY_BINDING__MODEL, oldModel, model)); } } return model; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EStructuralFeature basicGetModel() { return model; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setModel(EStructuralFeature newModel) { EStructuralFeature oldModel = model; model = newModel; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, MappingPackage.EMF_PROPERTY_BINDING__MODEL, oldModel, model)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ModelNavigation getNavigation() { return navigation; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetNavigation(ModelNavigation newNavigation, NotificationChain msgs) { ModelNavigation oldNavigation = navigation; navigation = newNavigation; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION, oldNavigation, newNavigation); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setNavigation(ModelNavigation newNavigation) { if (newNavigation != navigation) { NotificationChain msgs = null; if (navigation != null) msgs = ((InternalEObject) navigation) .eInverseRemove( this, EOPPOSITE_FEATURE_BASE - MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION, null, msgs); if (newNavigation != null) msgs = ((InternalEObject) newNavigation) .eInverseAdd( this, EOPPOSITE_FEATURE_BASE - MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION, null, msgs); msgs = basicSetNavigation(newNavigation, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION, newNavigation, newNavigation)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EditorSettings getEditorSetting() { return editorSetting; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetEditorSetting( EditorSettings newEditorSetting, NotificationChain msgs) { EditorSettings oldEditorSetting = editorSetting; editorSetting = newEditorSetting; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING, oldEditorSetting, newEditorSetting); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setEditorSetting(EditorSettings newEditorSetting) { if (newEditorSetting != editorSetting) { NotificationChain msgs = null; if (editorSetting != null) msgs = ((InternalEObject) editorSetting) .eInverseRemove( this, EOPPOSITE_FEATURE_BASE - MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING, null, msgs); if (newEditorSetting != null) msgs = ((InternalEObject) newEditorSetting) .eInverseAdd( this, EOPPOSITE_FEATURE_BASE - MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING, null, msgs); msgs = basicSetEditorSetting(newEditorSetting, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING, newEditorSetting, newEditorSetting)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION: return basicSetNavigation(null, msgs); case MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING: return basicSetEditorSetting(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 MappingPackage.EMF_PROPERTY_BINDING__MODEL: if (resolve) return getModel(); return basicGetModel(); case MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION: return getNavigation(); case MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING: return getEditorSetting(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case MappingPackage.EMF_PROPERTY_BINDING__MODEL: setModel((EStructuralFeature) newValue); return; case MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION: setNavigation((ModelNavigation) newValue); return; case MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING: setEditorSetting((EditorSettings) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case MappingPackage.EMF_PROPERTY_BINDING__MODEL: setModel((EStructuralFeature) null); return; case MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION: setNavigation((ModelNavigation) null); return; case MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING: setEditorSetting((EditorSettings) null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case MappingPackage.EMF_PROPERTY_BINDING__MODEL: return model != null; case MappingPackage.EMF_PROPERTY_BINDING__NAVIGATION: return navigation != null; case MappingPackage.EMF_PROPERTY_BINDING__EDITOR_SETTING: return editorSetting != null; } return super.eIsSet(featureID); } } //EMFPropertyBindingImpl