/** * Copyright (c) 2010, 2012 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.mylyn.docs.intent.core.modelingunit.impl; 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.internal.cdo.CDOObjectImpl; import org.eclipse.mylyn.docs.intent.core.modelingunit.ModelingUnitPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Key Val For Annotation</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.mylyn.docs.intent.core.modelingunit.impl.KeyValForAnnotationImpl#getTypedKey <em>Key</em>}</li> * <li>{@link org.eclipse.mylyn.docs.intent.core.modelingunit.impl.KeyValForAnnotationImpl#getTypedValue <em>Value</em>}</li> * </ul> * </p> * * @generated */ public class KeyValForAnnotationImpl extends CDOObjectImpl implements BasicEMap.Entry<String, String> { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected KeyValForAnnotationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ModelingUnitPackage.Literals.KEY_VAL_FOR_ANNOTATION; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected int eStaticFeatureCount() { return 0; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getTypedKey() { return (String)eGet(ModelingUnitPackage.Literals.KEY_VAL_FOR_ANNOTATION__KEY, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTypedKey(String newKey) { eSet(ModelingUnitPackage.Literals.KEY_VAL_FOR_ANNOTATION__KEY, newKey); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getTypedValue() { return (String)eGet(ModelingUnitPackage.Literals.KEY_VAL_FOR_ANNOTATION__VALUE, true); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTypedValue(String newValue) { eSet(ModelingUnitPackage.Literals.KEY_VAL_FOR_ANNOTATION__VALUE, newValue); } /** * <!-- 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()); } } //KeyValForAnnotationImpl