/** * <copyright> * </copyright> * * $Id$ */ package soamodel.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import soamodel.HttpMethod; import soamodel.RestMethod; import soamodel.SoamodelPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Rest Method</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link soamodel.impl.RestMethodImpl#getHttpMethod <em>Http Method</em>}</li> * <li>{@link soamodel.impl.RestMethodImpl#getPath <em>Path</em>}</li> * </ul> * </p> * * @generated */ public class RestMethodImpl extends ServiceMethodImpl implements RestMethod { /** * The default value of the '{@link #getHttpMethod() <em>Http Method</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getHttpMethod() * @generated * @ordered */ protected static final HttpMethod HTTP_METHOD_EDEFAULT = HttpMethod.GET_LITERAL; /** * The cached value of the '{@link #getHttpMethod() <em>Http Method</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getHttpMethod() * @generated * @ordered */ protected HttpMethod httpMethod = HTTP_METHOD_EDEFAULT; /** * The default value of the '{@link #getPath() <em>Path</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getPath() * @generated * @ordered */ protected static final String PATH_EDEFAULT = null; /** * The cached value of the '{@link #getPath() <em>Path</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getPath() * @generated * @ordered */ protected String path = PATH_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected RestMethodImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EClass eStaticClass() { return SoamodelPackage.Literals.REST_METHOD; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public HttpMethod getHttpMethod() { return httpMethod; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setHttpMethod(HttpMethod newHttpMethod) { HttpMethod oldHttpMethod = httpMethod; httpMethod = newHttpMethod == null ? HTTP_METHOD_EDEFAULT : newHttpMethod; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SoamodelPackage.REST_METHOD__HTTP_METHOD, oldHttpMethod, httpMethod)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getPath() { return path; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setPath(String newPath) { String oldPath = path; path = newPath; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SoamodelPackage.REST_METHOD__PATH, oldPath, path)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SoamodelPackage.REST_METHOD__HTTP_METHOD: return getHttpMethod(); case SoamodelPackage.REST_METHOD__PATH: return getPath(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case SoamodelPackage.REST_METHOD__HTTP_METHOD: setHttpMethod((HttpMethod)newValue); return; case SoamodelPackage.REST_METHOD__PATH: setPath((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eUnset(int featureID) { switch (featureID) { case SoamodelPackage.REST_METHOD__HTTP_METHOD: setHttpMethod(HTTP_METHOD_EDEFAULT); return; case SoamodelPackage.REST_METHOD__PATH: setPath(PATH_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case SoamodelPackage.REST_METHOD__HTTP_METHOD: return httpMethod != HTTP_METHOD_EDEFAULT; case SoamodelPackage.REST_METHOD__PATH: return PATH_EDEFAULT == null ? path != null : !PATH_EDEFAULT.equals(path); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (httpMethod: "); result.append(httpMethod); result.append(", path: "); result.append(path); result.append(')'); return result.toString(); } } //RestMethodImpl