/* * StringToStringMapImpl.java * * This file is part of the STS-Tool project. * Copyright (c) 2011-2012 "University of Trento - DISI" All rights reserved. * * Is strictly forbidden to remove this copyright notice from this source code. * * Disclaimer of Warranty: * STS-Tool (this software) is provided "as-is" and without warranty of any kind, * express, implied or otherwise, including without limitation, any warranty of * merchantability or fitness for a particular purpose. * In no event shall the copyright holder or contributors be liable for any direct, * indirect, incidental, special, exemplary, or consequential damages * including, but not limited to, procurement of substitute goods or services; * loss of use, data, or profits; or business interruption) however caused and on * any theory of liability, whether in contract, strict liability, or tort (including * negligence or otherwise) arising in any way out of the use of this software, even * if advised of the possibility of such damage. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License version 3 * as published by the Free Software Foundation with the addition of the * following permission added to Section 15 as permitted in Section 7(a): * FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY * "University of Trento - DISI","University of Trento - DISI" DISCLAIMS THE * WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. * * See the GNU Affero General Public License for more details. * You should have received a copy of the GNU Affero General Public License * along with this program; if not, see http://www.gnu.org/licenses or write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA, 02110-1301 USA, or download the license from the following URL: * http://www.sts-tool.eu/License.php * * For more information, please contact STS-Tool group at this * address: ststool@disi.unitn.it * */ /** * DISI - University of Trento * * $Id$ */ package eu.aniketos.wp1.ststool.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.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import eu.aniketos.wp1.ststool.StstoolPackage; /** * <!-- begin-user-doc --> An implementation of the model object '<em><b>String To String Map</b></em>'. <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link eu.aniketos.wp1.ststool.impl.StringToStringMapImpl#getTypedKey <em>Key</em>}</li> * <li>{@link eu.aniketos.wp1.ststool.impl.StringToStringMapImpl#getTypedValue <em>Value</em>}</li> * </ul> * </p> * * @generated */ public class StringToStringMapImpl extends EObjectImpl implements BasicEMap.Entry<String,String> { /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public static final String copyright = "DISI - University of Trento"; /** * The default value of the '{@link #getTypedKey() <em>Key</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #getTypedKey() * @generated * @ordered */ protected static final String KEY_EDEFAULT = null; /** * The cached value of the '{@link #getTypedKey() <em>Key</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #getTypedKey() * @generated * @ordered */ protected String key = KEY_EDEFAULT; /** * The default value of the '{@link #getTypedValue() <em>Value</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @see #getTypedValue() * @generated * @ordered */ protected static final String 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 String value = VALUE_EDEFAULT; /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ protected StringToStringMapImpl() { super(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass(){ return StstoolPackage.Literals.STRING_TO_STRING_MAP; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public String getTypedKey(){ return key; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public void setTypedKey(String newKey){ String oldKey = key; key = newKey; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StstoolPackage.STRING_TO_STRING_MAP__KEY, oldKey, key)); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public String getTypedValue(){ return value; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public void setTypedValue(String newValue){ String oldValue = value; value = newValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, StstoolPackage.STRING_TO_STRING_MAP__VALUE, oldValue, value)); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID,boolean resolve,boolean coreType){ switch (featureID) { case StstoolPackage.STRING_TO_STRING_MAP__KEY: return getTypedKey(); case StstoolPackage.STRING_TO_STRING_MAP__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 StstoolPackage.STRING_TO_STRING_MAP__KEY: setTypedKey((String)newValue); return; case StstoolPackage.STRING_TO_STRING_MAP__VALUE: setTypedValue((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID){ switch (featureID) { case StstoolPackage.STRING_TO_STRING_MAP__KEY: setTypedKey(KEY_EDEFAULT); return; case StstoolPackage.STRING_TO_STRING_MAP__VALUE: setTypedValue(VALUE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID){ switch (featureID) { case StstoolPackage.STRING_TO_STRING_MAP__KEY: return KEY_EDEFAULT == null ? key != null : !KEY_EDEFAULT.equals(key); case StstoolPackage.STRING_TO_STRING_MAP__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(" (key: "); result.append(key); result.append(", value: "); 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 String getKey(){ return getTypedKey(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public void setKey(String key){ setTypedKey(key); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public String getValue(){ return getTypedValue(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ public String setValue(String value){ String oldValue = getValue(); setTypedValue(value); return oldValue; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") public EMap<String, String> getEMap(){ EObject container = eContainer(); return container == null ? null : (EMap<String, String>)container.eGet(eContainmentFeature()); } } //StringToStringMapImpl