/** * <copyright> * </copyright> * * $Id$ */ package org.jboss.tools.smooks.model.smooks.impl; import java.util.Collection; 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.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; import org.jboss.tools.smooks.model.common.impl.AbstractAnyTypeImpl; import org.jboss.tools.smooks.model.smooks.ConditionType; import org.jboss.tools.smooks.model.smooks.ConditionsType; import org.jboss.tools.smooks.model.smooks.SmooksPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Conditions Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.jboss.tools.smooks.model.smooks.impl.ConditionsTypeImpl#getCondition <em>Condition</em>}</li> * </ul> * </p> * * @generated */ public class ConditionsTypeImpl extends AbstractAnyTypeImpl implements ConditionsType { /** * The cached value of the '{@link #getCondition() <em>Condition</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getCondition() * @generated * @ordered */ protected EList<ConditionType> condition; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ConditionsTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SmooksPackage.Literals.CONDITIONS_TYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<ConditionType> getCondition() { if (condition == null) { condition = new EObjectContainmentEList<ConditionType>(ConditionType.class, this, SmooksPackage.CONDITIONS_TYPE__CONDITION); } return condition; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SmooksPackage.CONDITIONS_TYPE__CONDITION: return ((InternalEList<?>)getCondition()).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 SmooksPackage.CONDITIONS_TYPE__CONDITION: return getCondition(); } 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 SmooksPackage.CONDITIONS_TYPE__CONDITION: getCondition().clear(); getCondition().addAll((Collection<? extends ConditionType>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SmooksPackage.CONDITIONS_TYPE__CONDITION: getCondition().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SmooksPackage.CONDITIONS_TYPE__CONDITION: return condition != null && !condition.isEmpty(); } return super.eIsSet(featureID); } } //ConditionsTypeImpl