/******************************************************************************* * Copyright (c) 2005, 2009 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial implementation *******************************************************************************/ package org.eclipse.epf.msproject.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.EStructuralFeature; 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; import org.eclipse.epf.msproject.MsprojectPackage; import org.eclipse.epf.msproject.WorkingTime; import org.eclipse.epf.msproject.WorkingTimes; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Working Times</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.epf.msproject.impl.WorkingTimesImpl#getWorkingTime <em>Working Time</em>}</li> * </ul> * </p> * * @generated */ public class WorkingTimesImpl extends EObjectImpl implements WorkingTimes { /** * The cached value of the '{@link #getWorkingTime() <em>Working Time</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getWorkingTime() * @generated * @ordered */ protected EList workingTime = null; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected WorkingTimesImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EClass eStaticClass() { return MsprojectPackage.eINSTANCE.getWorkingTimes(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList getWorkingTime() { if (workingTime == null) { workingTime = new EObjectContainmentEList(WorkingTime.class, this, MsprojectPackage.WORKING_TIMES__WORKING_TIME); } return workingTime; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, Class baseClass, NotificationChain msgs) { if (featureID >= 0) { switch (eDerivedStructuralFeatureID(featureID, baseClass)) { case MsprojectPackage.WORKING_TIMES__WORKING_TIME: return ((InternalEList)getWorkingTime()).basicRemove(otherEnd, msgs); default: return eDynamicInverseRemove(otherEnd, featureID, baseClass, msgs); } } return eBasicSetContainer(null, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object eGet(EStructuralFeature eFeature, boolean resolve) { switch (eDerivedStructuralFeatureID(eFeature)) { case MsprojectPackage.WORKING_TIMES__WORKING_TIME: return getWorkingTime(); } return eDynamicGet(eFeature, resolve); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eSet(EStructuralFeature eFeature, Object newValue) { switch (eDerivedStructuralFeatureID(eFeature)) { case MsprojectPackage.WORKING_TIMES__WORKING_TIME: getWorkingTime().clear(); getWorkingTime().addAll((Collection)newValue); return; } eDynamicSet(eFeature, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eUnset(EStructuralFeature eFeature) { switch (eDerivedStructuralFeatureID(eFeature)) { case MsprojectPackage.WORKING_TIMES__WORKING_TIME: getWorkingTime().clear(); return; } eDynamicUnset(eFeature); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean eIsSet(EStructuralFeature eFeature) { switch (eDerivedStructuralFeatureID(eFeature)) { case MsprojectPackage.WORKING_TIMES__WORKING_TIME: return workingTime != null && !workingTime.isEmpty(); } return eDynamicIsSet(eFeature); } } //WorkingTimesImpl