/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.mylyn.docs.epub.ncx.impl; import java.util.Collection; import org.eclipse.emf.common.notify.Notification; 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.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; import org.eclipse.mylyn.docs.epub.ncx.NCXPackage; import org.eclipse.mylyn.docs.epub.ncx.NavInfo; import org.eclipse.mylyn.docs.epub.ncx.NavLabel; import org.eclipse.mylyn.docs.epub.ncx.NavMap; import org.eclipse.mylyn.docs.epub.ncx.NavPoint; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Nav Map</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.impl.NavMapImpl#getNavInfos <em>Nav Infos</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.impl.NavMapImpl#getNavLabels <em>Nav Labels</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.impl.NavMapImpl#getNavPoints <em>Nav Points</em>}</li> * <li>{@link org.eclipse.mylyn.docs.epub.ncx.impl.NavMapImpl#getId <em>Id</em>}</li> * </ul> * * @generated */ public class NavMapImpl extends EObjectImpl implements NavMap { /** * The cached value of the '{@link #getNavInfos() <em>Nav Infos</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNavInfos() * @generated * @ordered */ protected EList<NavInfo> navInfos; /** * The cached value of the '{@link #getNavLabels() <em>Nav Labels</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNavLabels() * @generated * @ordered */ protected EList<NavLabel> navLabels; /** * The cached value of the '{@link #getNavPoints() <em>Nav Points</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNavPoints() * @generated * @ordered */ protected EList<NavPoint> navPoints; /** * The default value of the '{@link #getId() <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected static final String ID_EDEFAULT = null; /** * The cached value of the '{@link #getId() <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected String id = ID_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected NavMapImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return NCXPackage.Literals.NAV_MAP; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<NavInfo> getNavInfos() { if (navInfos == null) { navInfos = new EObjectContainmentEList<NavInfo>(NavInfo.class, this, NCXPackage.NAV_MAP__NAV_INFOS); } return navInfos; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<NavLabel> getNavLabels() { if (navLabels == null) { navLabels = new EObjectContainmentEList<NavLabel>(NavLabel.class, this, NCXPackage.NAV_MAP__NAV_LABELS); } return navLabels; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<NavPoint> getNavPoints() { if (navPoints == null) { navPoints = new EObjectContainmentEList<NavPoint>(NavPoint.class, this, NCXPackage.NAV_MAP__NAV_POINTS); } return navPoints; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getId() { return id; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setId(String newId) { String oldId = id; id = newId; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, NCXPackage.NAV_MAP__ID, oldId, id)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case NCXPackage.NAV_MAP__NAV_INFOS: return ((InternalEList<?>)getNavInfos()).basicRemove(otherEnd, msgs); case NCXPackage.NAV_MAP__NAV_LABELS: return ((InternalEList<?>)getNavLabels()).basicRemove(otherEnd, msgs); case NCXPackage.NAV_MAP__NAV_POINTS: return ((InternalEList<?>)getNavPoints()).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 NCXPackage.NAV_MAP__NAV_INFOS: return getNavInfos(); case NCXPackage.NAV_MAP__NAV_LABELS: return getNavLabels(); case NCXPackage.NAV_MAP__NAV_POINTS: return getNavPoints(); case NCXPackage.NAV_MAP__ID: return getId(); } 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 NCXPackage.NAV_MAP__NAV_INFOS: getNavInfos().clear(); getNavInfos().addAll((Collection<? extends NavInfo>)newValue); return; case NCXPackage.NAV_MAP__NAV_LABELS: getNavLabels().clear(); getNavLabels().addAll((Collection<? extends NavLabel>)newValue); return; case NCXPackage.NAV_MAP__NAV_POINTS: getNavPoints().clear(); getNavPoints().addAll((Collection<? extends NavPoint>)newValue); return; case NCXPackage.NAV_MAP__ID: setId((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case NCXPackage.NAV_MAP__NAV_INFOS: getNavInfos().clear(); return; case NCXPackage.NAV_MAP__NAV_LABELS: getNavLabels().clear(); return; case NCXPackage.NAV_MAP__NAV_POINTS: getNavPoints().clear(); return; case NCXPackage.NAV_MAP__ID: setId(ID_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case NCXPackage.NAV_MAP__NAV_INFOS: return navInfos != null && !navInfos.isEmpty(); case NCXPackage.NAV_MAP__NAV_LABELS: return navLabels != null && !navLabels.isEmpty(); case NCXPackage.NAV_MAP__NAV_POINTS: return navPoints != null && !navPoints.isEmpty(); case NCXPackage.NAV_MAP__ID: return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (id: "); result.append(id); result.append(')'); return result.toString(); } } //NavMapImpl