/** */ package org.jboss.tools.windup.windup.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.MinimalEObjectImpl; import org.jboss.tools.windup.windup.Technology; import org.jboss.tools.windup.windup.WindupPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Technology</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.jboss.tools.windup.windup.impl.TechnologyImpl#getId <em>Id</em>}</li> * <li>{@link org.jboss.tools.windup.windup.impl.TechnologyImpl#getVersionRange <em>Version Range</em>}</li> * </ul> * * @generated */ public class TechnologyImpl extends MinimalEObjectImpl.Container implements Technology { /** * The default value of the '{@link #getId() <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected static final String ID_EDEFAULT = null; /** * The cached value of the '{@link #getId() <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected String id = ID_EDEFAULT; /** * The default value of the '{@link #getVersionRange() <em>Version Range</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getVersionRange() * @generated * @ordered */ protected static final String VERSION_RANGE_EDEFAULT = null; /** * The cached value of the '{@link #getVersionRange() <em>Version Range</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getVersionRange() * @generated * @ordered */ protected String versionRange = VERSION_RANGE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected TechnologyImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return WindupPackage.eINSTANCE.getTechnology(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getId() { return id; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setId(String newId) { String oldId = id; id = newId; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WindupPackage.TECHNOLOGY__ID, oldId, id)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getVersionRange() { return versionRange; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setVersionRange(String newVersionRange) { String oldVersionRange = versionRange; versionRange = newVersionRange; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WindupPackage.TECHNOLOGY__VERSION_RANGE, oldVersionRange, versionRange)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case WindupPackage.TECHNOLOGY__ID: return getId(); case WindupPackage.TECHNOLOGY__VERSION_RANGE: return getVersionRange(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case WindupPackage.TECHNOLOGY__ID: setId((String)newValue); return; case WindupPackage.TECHNOLOGY__VERSION_RANGE: setVersionRange((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case WindupPackage.TECHNOLOGY__ID: setId(ID_EDEFAULT); return; case WindupPackage.TECHNOLOGY__VERSION_RANGE: setVersionRange(VERSION_RANGE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case WindupPackage.TECHNOLOGY__ID: return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id); case WindupPackage.TECHNOLOGY__VERSION_RANGE: return VERSION_RANGE_EDEFAULT == null ? versionRange != null : !VERSION_RANGE_EDEFAULT.equals(versionRange); } 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(" (id: "); result.append(id); result.append(", versionRange: "); result.append(versionRange); result.append(')'); return result.toString(); } } //TechnologyImpl