/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.ows10.impl; import java.util.Collection; import net.opengis.ows10.ExceptionType; import net.opengis.ows10.Ows10Package; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EDataTypeUniqueEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Exception Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link net.opengis.ows10.impl.ExceptionTypeImpl#getExceptionText <em>Exception Text</em>}</li> * <li>{@link net.opengis.ows10.impl.ExceptionTypeImpl#getExceptionCode <em>Exception Code</em>}</li> * <li>{@link net.opengis.ows10.impl.ExceptionTypeImpl#getLocator <em>Locator</em>}</li> * </ul> * </p> * * @generated */ public class ExceptionTypeImpl extends EObjectImpl implements ExceptionType { /** * The cached value of the '{@link #getExceptionText() <em>Exception Text</em>}' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getExceptionText() * @generated * @ordered */ protected EList exceptionText; /** * The default value of the '{@link #getExceptionCode() <em>Exception Code</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getExceptionCode() * @generated * @ordered */ protected static final String EXCEPTION_CODE_EDEFAULT = null; /** * The cached value of the '{@link #getExceptionCode() <em>Exception Code</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getExceptionCode() * @generated * @ordered */ protected String exceptionCode = EXCEPTION_CODE_EDEFAULT; /** * The default value of the '{@link #getLocator() <em>Locator</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getLocator() * @generated * @ordered */ protected static final String LOCATOR_EDEFAULT = null; /** * The cached value of the '{@link #getLocator() <em>Locator</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getLocator() * @generated * @ordered */ protected String locator = LOCATOR_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ExceptionTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EClass eStaticClass() { return Ows10Package.eINSTANCE.getExceptionType(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList getExceptionText() { if (exceptionText == null) { exceptionText = new EDataTypeUniqueEList(String.class, this, Ows10Package.EXCEPTION_TYPE__EXCEPTION_TEXT); } return exceptionText; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getExceptionCode() { return exceptionCode; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setExceptionCode(String newExceptionCode) { String oldExceptionCode = exceptionCode; exceptionCode = newExceptionCode; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Ows10Package.EXCEPTION_TYPE__EXCEPTION_CODE, oldExceptionCode, exceptionCode)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getLocator() { return locator; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setLocator(String newLocator) { String oldLocator = locator; locator = newLocator; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Ows10Package.EXCEPTION_TYPE__LOCATOR, oldLocator, locator)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Ows10Package.EXCEPTION_TYPE__EXCEPTION_TEXT: return getExceptionText(); case Ows10Package.EXCEPTION_TYPE__EXCEPTION_CODE: return getExceptionCode(); case Ows10Package.EXCEPTION_TYPE__LOCATOR: return getLocator(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case Ows10Package.EXCEPTION_TYPE__EXCEPTION_TEXT: getExceptionText().clear(); getExceptionText().addAll((Collection)newValue); return; case Ows10Package.EXCEPTION_TYPE__EXCEPTION_CODE: setExceptionCode((String)newValue); return; case Ows10Package.EXCEPTION_TYPE__LOCATOR: setLocator((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eUnset(int featureID) { switch (featureID) { case Ows10Package.EXCEPTION_TYPE__EXCEPTION_TEXT: getExceptionText().clear(); return; case Ows10Package.EXCEPTION_TYPE__EXCEPTION_CODE: setExceptionCode(EXCEPTION_CODE_EDEFAULT); return; case Ows10Package.EXCEPTION_TYPE__LOCATOR: setLocator(LOCATOR_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case Ows10Package.EXCEPTION_TYPE__EXCEPTION_TEXT: return exceptionText != null && !exceptionText.isEmpty(); case Ows10Package.EXCEPTION_TYPE__EXCEPTION_CODE: return EXCEPTION_CODE_EDEFAULT == null ? exceptionCode != null : !EXCEPTION_CODE_EDEFAULT.equals(exceptionCode); case Ows10Package.EXCEPTION_TYPE__LOCATOR: return LOCATOR_EDEFAULT == null ? locator != null : !LOCATOR_EDEFAULT.equals(locator); } 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(" (exceptionText: "); result.append(exceptionText); result.append(", exceptionCode: "); result.append(exceptionCode); result.append(", locator: "); result.append(locator); result.append(')'); return result.toString(); } } //ExceptionTypeImpl