/** * * * * $Id$ */ package net.opengis.wfs.impl; import java.math.BigInteger; import net.opengis.wfs.GetFeatureWithLockType; import net.opengis.wfs.WfsPackage; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * * An implementation of the model object 'Get Feature With Lock Type'. * *

* The following features are implemented: *

*

* * @generated */ public class GetFeatureWithLockTypeImpl extends GetFeatureTypeImpl implements GetFeatureWithLockType { /** * The default value of the '{@link #getExpiry() Expiry}' attribute. * * * @see #getExpiry() * @generated * @ordered */ protected static final BigInteger EXPIRY_EDEFAULT = new BigInteger("5"); /** * The cached value of the '{@link #getExpiry() Expiry}' attribute. * * * @see #getExpiry() * @generated * @ordered */ protected BigInteger expiry = EXPIRY_EDEFAULT; /** * This is true if the Expiry attribute has been set. * * * @generated * @ordered */ protected boolean expiryESet; /** * * * @generated */ protected GetFeatureWithLockTypeImpl() { super(); } /** * * * @generated */ protected EClass eStaticClass() { return WfsPackage.Literals.GET_FEATURE_WITH_LOCK_TYPE; } /** * * * @generated */ public BigInteger getExpiry() { return expiry; } /** * * * @generated */ public void setExpiry(BigInteger newExpiry) { BigInteger oldExpiry = expiry; expiry = newExpiry; boolean oldExpiryESet = expiryESet; expiryESet = true; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, WfsPackage.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY, oldExpiry, expiry, !oldExpiryESet)); } /** * * * @generated */ public void unsetExpiry() { BigInteger oldExpiry = expiry; boolean oldExpiryESet = expiryESet; expiry = EXPIRY_EDEFAULT; expiryESet = false; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.UNSET, WfsPackage.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY, oldExpiry, EXPIRY_EDEFAULT, oldExpiryESet)); } /** * * * @generated */ public boolean isSetExpiry() { return expiryESet; } /** * * * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case WfsPackage.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: return getExpiry(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case WfsPackage.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: setExpiry((BigInteger)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ public void eUnset(int featureID) { switch (featureID) { case WfsPackage.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: unsetExpiry(); return; } super.eUnset(featureID); } /** * * * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case WfsPackage.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: return isSetExpiry(); } return super.eIsSet(featureID); } /** * * * @generated */ public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (expiry: "); if (expiryESet) result.append(expiry); else result.append(""); result.append(')'); return result.toString(); } } //GetFeatureWithLockTypeImpl