/** * Copyright (c) 2015 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.sgen.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.sgen.DeprecatableElement; import org.yakindu.sct.model.sgen.SGenPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Deprecatable Element</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.model.sgen.impl.DeprecatableElementImpl#isDeprecated <em>Deprecated</em>}</li> * <li>{@link org.yakindu.sct.model.sgen.impl.DeprecatableElementImpl#getComment <em>Comment</em>}</li> * </ul> * * @generated */ public class DeprecatableElementImpl extends EObjectImpl implements DeprecatableElement { /** * The default value of the '{@link #isDeprecated() <em>Deprecated</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isDeprecated() * @generated * @ordered */ protected static final boolean DEPRECATED_EDEFAULT = false; /** * The cached value of the '{@link #isDeprecated() <em>Deprecated</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isDeprecated() * @generated * @ordered */ protected boolean deprecated = DEPRECATED_EDEFAULT; /** * The default value of the '{@link #getComment() <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getComment() * @generated * @ordered */ protected static final String COMMENT_EDEFAULT = null; /** * The cached value of the '{@link #getComment() <em>Comment</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getComment() * @generated * @ordered */ protected String comment = COMMENT_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected DeprecatableElementImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SGenPackage.Literals.DEPRECATABLE_ELEMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isDeprecated() { return deprecated; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setDeprecated(boolean newDeprecated) { boolean oldDeprecated = deprecated; deprecated = newDeprecated; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SGenPackage.DEPRECATABLE_ELEMENT__DEPRECATED, oldDeprecated, deprecated)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getComment() { return comment; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setComment(String newComment) { String oldComment = comment; comment = newComment; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SGenPackage.DEPRECATABLE_ELEMENT__COMMENT, oldComment, comment)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SGenPackage.DEPRECATABLE_ELEMENT__DEPRECATED: return isDeprecated(); case SGenPackage.DEPRECATABLE_ELEMENT__COMMENT: return getComment(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case SGenPackage.DEPRECATABLE_ELEMENT__DEPRECATED: setDeprecated((Boolean)newValue); return; case SGenPackage.DEPRECATABLE_ELEMENT__COMMENT: setComment((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SGenPackage.DEPRECATABLE_ELEMENT__DEPRECATED: setDeprecated(DEPRECATED_EDEFAULT); return; case SGenPackage.DEPRECATABLE_ELEMENT__COMMENT: setComment(COMMENT_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SGenPackage.DEPRECATABLE_ELEMENT__DEPRECATED: return deprecated != DEPRECATED_EDEFAULT; case SGenPackage.DEPRECATABLE_ELEMENT__COMMENT: return COMMENT_EDEFAULT == null ? comment != null : !COMMENT_EDEFAULT.equals(comment); } 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(" (deprecated: "); result.append(deprecated); result.append(", comment: "); result.append(comment); result.append(')'); return result.toString(); } } //DeprecatableElementImpl