/******************************************************************************* * 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 org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; 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.SequenceType; import org.oasisopen.names.tc.opendocument.xmlns.text.TextPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Sequence Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.SequenceTypeImpl#getMixed <em>Mixed</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.SequenceTypeImpl#getFormula <em>Formula</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.SequenceTypeImpl#getName <em>Name</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.SequenceTypeImpl#getNumFormat <em>Num Format</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.SequenceTypeImpl#getNumLetterSync <em>Num Letter Sync</em>}</li> * <li>{@link org.oasisopen.names.tc.opendocument.xmlns.text.impl.SequenceTypeImpl#getRefName <em>Ref Name</em>}</li> * </ul> * </p> * * @generated */ public class SequenceTypeImpl extends EObjectImpl implements SequenceType { /** * The cached value of the '{@link #getMixed() <em>Mixed</em>}' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getMixed() * @generated * @ordered */ protected FeatureMap mixed; /** * The default value of the '{@link #getFormula() <em>Formula</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFormula() * @generated * @ordered */ protected static final String FORMULA_EDEFAULT = null; /** * The cached value of the '{@link #getFormula() <em>Formula</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFormula() * @generated * @ordered */ protected String formula = FORMULA_EDEFAULT; /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * The default value of the '{@link #getNumFormat() <em>Num Format</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNumFormat() * @generated * @ordered */ protected static final Object NUM_FORMAT_EDEFAULT = null; /** * The cached value of the '{@link #getNumFormat() <em>Num Format</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNumFormat() * @generated * @ordered */ protected Object numFormat = NUM_FORMAT_EDEFAULT; /** * The default value of the '{@link #getNumLetterSync() <em>Num Letter Sync</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNumLetterSync() * @generated * @ordered */ protected static final org.oasisopen.names.tc.opendocument.xmlns.text.Boolean NUM_LETTER_SYNC_EDEFAULT = org.oasisopen.names.tc.opendocument.xmlns.text.Boolean.TRUE; /** * The cached value of the '{@link #getNumLetterSync() <em>Num Letter Sync</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getNumLetterSync() * @generated * @ordered */ protected org.oasisopen.names.tc.opendocument.xmlns.text.Boolean numLetterSync = NUM_LETTER_SYNC_EDEFAULT; /** * This is true if the Num Letter Sync attribute has been set. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated * @ordered */ protected boolean numLetterSyncESet; /** * The default value of the '{@link #getRefName() <em>Ref Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getRefName() * @generated * @ordered */ protected static final String REF_NAME_EDEFAULT = null; /** * The cached value of the '{@link #getRefName() <em>Ref Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getRefName() * @generated * @ordered */ protected String refName = REF_NAME_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SequenceTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return TextPackage.eINSTANCE.getSequenceType(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public FeatureMap getMixed() { if (mixed == null) { mixed = new BasicFeatureMap(this, TextPackage.SEQUENCE_TYPE__MIXED); } return mixed; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getFormula() { return formula; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setFormula(String newFormula) { String oldFormula = formula; formula = newFormula; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TextPackage.SEQUENCE_TYPE__FORMULA, oldFormula, formula)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TextPackage.SEQUENCE_TYPE__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object getNumFormat() { return numFormat; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setNumFormat(Object newNumFormat) { Object oldNumFormat = numFormat; numFormat = newNumFormat; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TextPackage.SEQUENCE_TYPE__NUM_FORMAT, oldNumFormat, numFormat)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public org.oasisopen.names.tc.opendocument.xmlns.text.Boolean getNumLetterSync() { return numLetterSync; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setNumLetterSync(org.oasisopen.names.tc.opendocument.xmlns.text.Boolean newNumLetterSync) { org.oasisopen.names.tc.opendocument.xmlns.text.Boolean oldNumLetterSync = numLetterSync; numLetterSync = newNumLetterSync == null ? NUM_LETTER_SYNC_EDEFAULT : newNumLetterSync; boolean oldNumLetterSyncESet = numLetterSyncESet; numLetterSyncESet = true; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TextPackage.SEQUENCE_TYPE__NUM_LETTER_SYNC, oldNumLetterSync, numLetterSync, !oldNumLetterSyncESet)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void unsetNumLetterSync() { org.oasisopen.names.tc.opendocument.xmlns.text.Boolean oldNumLetterSync = numLetterSync; boolean oldNumLetterSyncESet = numLetterSyncESet; numLetterSync = NUM_LETTER_SYNC_EDEFAULT; numLetterSyncESet = false; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.UNSET, TextPackage.SEQUENCE_TYPE__NUM_LETTER_SYNC, oldNumLetterSync, NUM_LETTER_SYNC_EDEFAULT, oldNumLetterSyncESet)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isSetNumLetterSync() { return numLetterSyncESet; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getRefName() { return refName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setRefName(String newRefName) { String oldRefName = refName; refName = newRefName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, TextPackage.SEQUENCE_TYPE__REF_NAME, oldRefName, refName)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case TextPackage.SEQUENCE_TYPE__MIXED: return ((InternalEList<?>)getMixed()).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.SEQUENCE_TYPE__MIXED: if (coreType) return getMixed(); return ((FeatureMap.Internal)getMixed()).getWrapper(); case TextPackage.SEQUENCE_TYPE__FORMULA: return getFormula(); case TextPackage.SEQUENCE_TYPE__NAME: return getName(); case TextPackage.SEQUENCE_TYPE__NUM_FORMAT: return getNumFormat(); case TextPackage.SEQUENCE_TYPE__NUM_LETTER_SYNC: return getNumLetterSync(); case TextPackage.SEQUENCE_TYPE__REF_NAME: return getRefName(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case TextPackage.SEQUENCE_TYPE__MIXED: ((FeatureMap.Internal)getMixed()).set(newValue); return; case TextPackage.SEQUENCE_TYPE__FORMULA: setFormula((String)newValue); return; case TextPackage.SEQUENCE_TYPE__NAME: setName((String)newValue); return; case TextPackage.SEQUENCE_TYPE__NUM_FORMAT: setNumFormat(newValue); return; case TextPackage.SEQUENCE_TYPE__NUM_LETTER_SYNC: setNumLetterSync((org.oasisopen.names.tc.opendocument.xmlns.text.Boolean)newValue); return; case TextPackage.SEQUENCE_TYPE__REF_NAME: setRefName((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case TextPackage.SEQUENCE_TYPE__MIXED: getMixed().clear(); return; case TextPackage.SEQUENCE_TYPE__FORMULA: setFormula(FORMULA_EDEFAULT); return; case TextPackage.SEQUENCE_TYPE__NAME: setName(NAME_EDEFAULT); return; case TextPackage.SEQUENCE_TYPE__NUM_FORMAT: setNumFormat(NUM_FORMAT_EDEFAULT); return; case TextPackage.SEQUENCE_TYPE__NUM_LETTER_SYNC: unsetNumLetterSync(); return; case TextPackage.SEQUENCE_TYPE__REF_NAME: setRefName(REF_NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case TextPackage.SEQUENCE_TYPE__MIXED: return mixed != null && !mixed.isEmpty(); case TextPackage.SEQUENCE_TYPE__FORMULA: return FORMULA_EDEFAULT == null ? formula != null : !FORMULA_EDEFAULT.equals(formula); case TextPackage.SEQUENCE_TYPE__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case TextPackage.SEQUENCE_TYPE__NUM_FORMAT: return NUM_FORMAT_EDEFAULT == null ? numFormat != null : !NUM_FORMAT_EDEFAULT.equals(numFormat); case TextPackage.SEQUENCE_TYPE__NUM_LETTER_SYNC: return isSetNumLetterSync(); case TextPackage.SEQUENCE_TYPE__REF_NAME: return REF_NAME_EDEFAULT == null ? refName != null : !REF_NAME_EDEFAULT.equals(refName); } 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(" (mixed: "); result.append(mixed); result.append(", formula: "); result.append(formula); result.append(", name: "); result.append(name); result.append(", numFormat: "); result.append(numFormat); result.append(", numLetterSync: "); if (numLetterSyncESet) result.append(numLetterSync); else result.append("<unset>"); result.append(", refName: "); result.append(refName); result.append(')'); return result.toString(); } } //SequenceTypeImpl