/** * <copyright> * </copyright> * * $Id$ */ package org.ubicompforall.simplelanguage.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.ubicompforall.simplelanguage.Condition; import org.ubicompforall.simplelanguage.SimpleLanguagePackage; import org.ubicompforall.simplelanguage.Trigger; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Trigger</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.ubicompforall.simplelanguage.impl.TriggerImpl#getConditions <em>Conditions</em>}</li> * </ul> * </p> * * @generated */ public class TriggerImpl extends BuildingBlockImpl implements Trigger { /** * The cached value of the '{@link #getConditions() <em>Conditions</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getConditions() * @generated * @ordered */ protected EList<Condition> conditions; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected TriggerImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SimpleLanguagePackage.Literals.TRIGGER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Condition> getConditions() { if (conditions == null) { conditions = new EObjectContainmentEList<Condition>(Condition.class, this, SimpleLanguagePackage.TRIGGER__CONDITIONS); } return conditions; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SimpleLanguagePackage.TRIGGER__CONDITIONS: return ((InternalEList<?>)getConditions()).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 SimpleLanguagePackage.TRIGGER__CONDITIONS: return getConditions(); } 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 SimpleLanguagePackage.TRIGGER__CONDITIONS: getConditions().clear(); getConditions().addAll((Collection<? extends Condition>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SimpleLanguagePackage.TRIGGER__CONDITIONS: getConditions().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SimpleLanguagePackage.TRIGGER__CONDITIONS: return conditions != null && !conditions.isEmpty(); } return super.eIsSet(featureID); } } //TriggerImpl