/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * <copyright> * </copyright> * * $Id$ */ package org.oasisopen.names.tc.opendocument.xmlns.text.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.BasicFeatureMap; import org.eclipse.emf.ecore.util.FeatureMap; import org.eclipse.emf.ecore.util.InternalEList; import org.oasisopen.names.tc.opendocument.xmlns.text.HType; import org.oasisopen.names.tc.opendocument.xmlns.text.ListType; import org.oasisopen.names.tc.opendocument.xmlns.text.PType; import org.oasisopen.names.tc.opendocument.xmlns.text.SoftPageBreakType; import org.oasisopen.names.tc.opendocument.xmlns.text.TextListItemContent; import org.oasisopen.names.tc.opendocument.xmlns.text.TextPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>List Item Content</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.TextListItemContentImpl#getNumber <em>Number</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.TextListItemContentImpl#getGroup <em>Group</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.TextListItemContentImpl#getP <em>P</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.TextListItemContentImpl#getH <em>H</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.TextListItemContentImpl#getList <em>List</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.TextListItemContentImpl#getSoftPageBreak <em>Soft Page Break</em>}</li> * </ul> * </p> * * @generated */ public class TextListItemContentImpl extends EObjectImpl implements TextListItemContent { /** * The default value of the '{@link #getNumber() <em>Number</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNumber() * @generated * @ordered */ protected static final String NUMBER_EDEFAULT = null; /** * The cached value of the '{@link #getNumber() <em>Number</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNumber() * @generated * @ordered */ protected String number = NUMBER_EDEFAULT; /** * The cached value of the '{@link #getGroup() <em>Group</em>}' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getGroup() * @generated * @ordered */ protected FeatureMap group; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected TextListItemContentImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TextPackage.eINSTANCE.getTextListItemContent(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getNumber() { return number; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setNumber(String newNumber) { String oldNumber = number; number = newNumber; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TextPackage.TEXT_LIST_ITEM_CONTENT__NUMBER, oldNumber, number)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public FeatureMap getGroup() { if (group == null) { group = new BasicFeatureMap(this, TextPackage.TEXT_LIST_ITEM_CONTENT__GROUP); } return group; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<PType> getP() { return getGroup().list(TextPackage.eINSTANCE.getTextListItemContent_P()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<HType> getH() { return getGroup().list(TextPackage.eINSTANCE.getTextListItemContent_H()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<ListType> getList() { return getGroup().list(TextPackage.eINSTANCE.getTextListItemContent_List()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<SoftPageBreakType> getSoftPageBreak() { return getGroup().list(TextPackage.eINSTANCE.getTextListItemContent_SoftPageBreak()); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case TextPackage.TEXT_LIST_ITEM_CONTENT__GROUP: return ((InternalEList<?>)getGroup()).basicRemove(otherEnd, msgs); case TextPackage.TEXT_LIST_ITEM_CONTENT__P: return ((InternalEList<?>)getP()).basicRemove(otherEnd, msgs); case TextPackage.TEXT_LIST_ITEM_CONTENT__H: return ((InternalEList<?>)getH()).basicRemove(otherEnd, msgs); case TextPackage.TEXT_LIST_ITEM_CONTENT__LIST: return ((InternalEList<?>)getList()).basicRemove(otherEnd, msgs); case TextPackage.TEXT_LIST_ITEM_CONTENT__SOFT_PAGE_BREAK: return ((InternalEList<?>)getSoftPageBreak()).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 TextPackage.TEXT_LIST_ITEM_CONTENT__NUMBER: return getNumber(); case TextPackage.TEXT_LIST_ITEM_CONTENT__GROUP: if (coreType) return getGroup(); return ((FeatureMap.Internal)getGroup()).getWrapper(); case TextPackage.TEXT_LIST_ITEM_CONTENT__P: return getP(); case TextPackage.TEXT_LIST_ITEM_CONTENT__H: return getH(); case TextPackage.TEXT_LIST_ITEM_CONTENT__LIST: return getList(); case TextPackage.TEXT_LIST_ITEM_CONTENT__SOFT_PAGE_BREAK: return getSoftPageBreak(); } 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 TextPackage.TEXT_LIST_ITEM_CONTENT__NUMBER: setNumber((String)newValue); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__GROUP: ((FeatureMap.Internal)getGroup()).set(newValue); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__P: getP().clear(); getP().addAll((Collection<? extends PType>)newValue); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__H: getH().clear(); getH().addAll((Collection<? extends HType>)newValue); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__LIST: getList().clear(); getList().addAll((Collection<? extends ListType>)newValue); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__SOFT_PAGE_BREAK: getSoftPageBreak().clear(); getSoftPageBreak().addAll((Collection<? extends SoftPageBreakType>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TextPackage.TEXT_LIST_ITEM_CONTENT__NUMBER: setNumber(NUMBER_EDEFAULT); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__GROUP: getGroup().clear(); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__P: getP().clear(); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__H: getH().clear(); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__LIST: getList().clear(); return; case TextPackage.TEXT_LIST_ITEM_CONTENT__SOFT_PAGE_BREAK: getSoftPageBreak().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TextPackage.TEXT_LIST_ITEM_CONTENT__NUMBER: return NUMBER_EDEFAULT == null ? number != null : !NUMBER_EDEFAULT.equals(number); case TextPackage.TEXT_LIST_ITEM_CONTENT__GROUP: return group != null && !group.isEmpty(); case TextPackage.TEXT_LIST_ITEM_CONTENT__P: return !getP().isEmpty(); case TextPackage.TEXT_LIST_ITEM_CONTENT__H: return !getH().isEmpty(); case TextPackage.TEXT_LIST_ITEM_CONTENT__LIST: return !getList().isEmpty(); case TextPackage.TEXT_LIST_ITEM_CONTENT__SOFT_PAGE_BREAK: return !getSoftPageBreak().isEmpty(); } 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(" (number: "); result.append(number); result.append(", group: "); result.append(group); result.append(')'); return result.toString(); } } //TextListItemContentImpl