/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.fes20.impl; import java.util.Collection; import net.opengis.fes20.AvailableFunctionType; import net.opengis.fes20.AvailableFunctionsType; import net.opengis.fes20.Fes20Package; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Available Functions Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link net.opengis.fes20.impl.AvailableFunctionsTypeImpl#getFunction <em>Function</em>}</li> * </ul> * </p> * * @generated */ public class AvailableFunctionsTypeImpl extends EObjectImpl implements AvailableFunctionsType { /** * The cached value of the '{@link #getFunction() <em>Function</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFunction() * @generated * @ordered */ protected EList<AvailableFunctionType> function; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected AvailableFunctionsTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return Fes20Package.Literals.AVAILABLE_FUNCTIONS_TYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<AvailableFunctionType> getFunction() { if (function == null) { function = new EObjectContainmentEList<AvailableFunctionType>(AvailableFunctionType.class, this, Fes20Package.AVAILABLE_FUNCTIONS_TYPE__FUNCTION); } return function; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case Fes20Package.AVAILABLE_FUNCTIONS_TYPE__FUNCTION: return ((InternalEList<?>)getFunction()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case Fes20Package.AVAILABLE_FUNCTIONS_TYPE__FUNCTION: return getFunction(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case Fes20Package.AVAILABLE_FUNCTIONS_TYPE__FUNCTION: getFunction().clear(); getFunction().addAll((Collection<? extends AvailableFunctionType>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case Fes20Package.AVAILABLE_FUNCTIONS_TYPE__FUNCTION: getFunction().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case Fes20Package.AVAILABLE_FUNCTIONS_TYPE__FUNCTION: return function != null && !function.isEmpty(); } return super.eIsSet(featureID); } } //AvailableFunctionsTypeImpl