/** * <copyright> * * Copyright (c) 2010-2016 Thales Global Services S.A.S. * 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: * Thales Global Services S.A.S. - initial API and implementation * * </copyright> */ package org.eclipse.emf.diffmerge.ui.diffuidata.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.util.BasicEMap; import org.eclipse.emf.common.util.EMap; import org.eclipse.emf.diffmerge.diffdata.EMatch; import org.eclipse.emf.diffmerge.ui.diffuidata.DiffuidataPackage; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Match To Nb Entry</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.emf.diffmerge.ui.diffuidata.impl.MatchToNbEntryImpl#getTypedKey <em>Key</em>}</li> * <li>{@link org.eclipse.emf.diffmerge.ui.diffuidata.impl.MatchToNbEntryImpl#getTypedValue <em>Value</em>}</li> * </ul> * </p> * * @generated */ @SuppressWarnings("hiding") public class MatchToNbEntryImpl extends EObjectImpl implements BasicEMap.Entry<EMatch,Integer> { /** * The cached value of the '{@link #getTypedKey() <em>Key</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTypedKey() * @generated * @ordered */ protected EMatch key; /** * The default value of the '{@link #getTypedValue() <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTypedValue() * @generated * @ordered */ protected static final Integer VALUE_EDEFAULT = null; /** * The cached value of the '{@link #getTypedValue() <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTypedValue() * @generated * @ordered */ protected Integer value = VALUE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected MatchToNbEntryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return DiffuidataPackage.Literals.MATCH_TO_NB_ENTRY; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EMatch getTypedKey() { if (key != null && key.eIsProxy()) { InternalEObject oldKey = (InternalEObject)key; key = (EMatch)eResolveProxy(oldKey); if (key != oldKey) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, DiffuidataPackage.MATCH_TO_NB_ENTRY__KEY, oldKey, key)); } } return key; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EMatch basicGetTypedKey() { return key; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTypedKey(EMatch newKey) { EMatch oldKey = key; key = newKey; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DiffuidataPackage.MATCH_TO_NB_ENTRY__KEY, oldKey, key)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Integer getTypedValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTypedValue(Integer newValue) { Integer oldValue = value; value = newValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DiffuidataPackage.MATCH_TO_NB_ENTRY__VALUE, oldValue, value)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case DiffuidataPackage.MATCH_TO_NB_ENTRY__KEY: if (resolve) return getTypedKey(); return basicGetTypedKey(); case DiffuidataPackage.MATCH_TO_NB_ENTRY__VALUE: return getTypedValue(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case DiffuidataPackage.MATCH_TO_NB_ENTRY__KEY: setTypedKey((EMatch)newValue); return; case DiffuidataPackage.MATCH_TO_NB_ENTRY__VALUE: setTypedValue((Integer)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DiffuidataPackage.MATCH_TO_NB_ENTRY__KEY: setTypedKey((EMatch)null); return; case DiffuidataPackage.MATCH_TO_NB_ENTRY__VALUE: setTypedValue(VALUE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DiffuidataPackage.MATCH_TO_NB_ENTRY__KEY: return key != null; case DiffuidataPackage.MATCH_TO_NB_ENTRY__VALUE: return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value); } 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(" (value: "); //$NON-NLS-1$ result.append(value); result.append(')'); return result.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected int hash = -1; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public int getHash() { if (hash == -1) { Object theKey = getKey(); hash = (theKey == null ? 0 : theKey.hashCode()); } return hash; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setHash(int hash) { this.hash = hash; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EMatch getKey() { return getTypedKey(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setKey(EMatch key) { setTypedKey(key); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Integer getValue() { return getTypedValue(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Integer setValue(Integer value) { Integer oldValue = getValue(); setTypedValue(value); return oldValue; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EMap<EMatch, Integer> getEMap() { EObject container = eContainer(); return container == null ? null : (EMap<EMatch, Integer>)container.eGet(eContainmentFeature()); } } //MatchToNbEntryImpl