/** * 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.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.yakindu.sct.model.sgraph.SGraphPackage; import org.yakindu.sct.model.sgraph.SpecificationElement; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Specification Element</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgraph.impl.SpecificationElementImpl#getSpecification <em>Specification</em>}</li> * </ul> * * @generated */ public abstract class SpecificationElementImpl extends EObjectImpl implements SpecificationElement { /** * <!-- 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 default value of the '{@link #getSpecification() <em>Specification</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSpecification() * @generated * @ordered */ protected static final String SPECIFICATION_EDEFAULT = null; /** * The cached value of the '{@link #getSpecification() <em>Specification</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSpecification() * @generated * @ordered */ protected String specification = SPECIFICATION_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SpecificationElementImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SGraphPackage.Literals.SPECIFICATION_ELEMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getSpecification() { return specification; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setSpecification(String newSpecification) { String oldSpecification = specification; specification = newSpecification; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SGraphPackage.SPECIFICATION_ELEMENT__SPECIFICATION, oldSpecification, specification)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SGraphPackage.SPECIFICATION_ELEMENT__SPECIFICATION: return getSpecification(); } 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.SPECIFICATION_ELEMENT__SPECIFICATION: setSpecification((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SGraphPackage.SPECIFICATION_ELEMENT__SPECIFICATION: setSpecification(SPECIFICATION_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SGraphPackage.SPECIFICATION_ELEMENT__SPECIFICATION: return SPECIFICATION_EDEFAULT == null ? specification != null : !SPECIFICATION_EDEFAULT.equals(specification); } 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(" (specification: "); result.append(specification); result.append(')'); return result.toString(); } } //SpecificationElementImpl