/** * * * * $Id$ */ package net.opengis.wfs20.impl; import java.math.BigInteger; import net.opengis.wfs20.AllSomeType; import net.opengis.wfs20.GetFeatureWithLockType; import net.opengis.wfs20.Wfs20Package; 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("300"); /** * 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; /** * The default value of the '{@link #getLockAction() Lock Action}' attribute. * * * @see #getLockAction() * @generated * @ordered */ protected static final AllSomeType LOCK_ACTION_EDEFAULT = AllSomeType.ALL; /** * The cached value of the '{@link #getLockAction() Lock Action}' attribute. * * * @see #getLockAction() * @generated * @ordered */ protected AllSomeType lockAction = LOCK_ACTION_EDEFAULT; /** * This is true if the Lock Action attribute has been set. * * * @generated * @ordered */ protected boolean lockActionESet; /** * * * @generated */ protected GetFeatureWithLockTypeImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return Wfs20Package.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, Wfs20Package.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, Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY, oldExpiry, EXPIRY_EDEFAULT, oldExpiryESet)); } /** * * * @generated */ public boolean isSetExpiry() { return expiryESet; } /** * * * @generated */ public AllSomeType getLockAction() { return lockAction; } /** * * * @generated */ public void setLockAction(AllSomeType newLockAction) { AllSomeType oldLockAction = lockAction; lockAction = newLockAction == null ? LOCK_ACTION_EDEFAULT : newLockAction; boolean oldLockActionESet = lockActionESet; lockActionESet = true; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__LOCK_ACTION, oldLockAction, lockAction, !oldLockActionESet)); } /** * * * @generated */ public void unsetLockAction() { AllSomeType oldLockAction = lockAction; boolean oldLockActionESet = lockActionESet; lockAction = LOCK_ACTION_EDEFAULT; lockActionESet = false; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.UNSET, Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__LOCK_ACTION, oldLockAction, LOCK_ACTION_EDEFAULT, oldLockActionESet)); } /** * * * @generated */ public boolean isSetLockAction() { return lockActionESet; } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: return getExpiry(); case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__LOCK_ACTION: return getLockAction(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: setExpiry((BigInteger)newValue); return; case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__LOCK_ACTION: setLockAction((AllSomeType)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: unsetExpiry(); return; case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__LOCK_ACTION: unsetLockAction(); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__EXPIRY: return isSetExpiry(); case Wfs20Package.GET_FEATURE_WITH_LOCK_TYPE__LOCK_ACTION: return isSetLockAction(); } return super.eIsSet(featureID); } /** * * * @generated */ @Override 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(", lockAction: "); if (lockActionESet) result.append(lockAction); else result.append(""); result.append(')'); return result.toString(); } } //GetFeatureWithLockTypeImpl