/******************************************************************************* * Copyright (c) 2007, 2009 Oracle. 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: * Oracle - initial API and implementation ******************************************************************************/ package org.eclipse.jpt.core.resource.orm; 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.EStructuralFeature; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.jpt.core.MappingKeys; import org.eclipse.jpt.core.internal.utility.translators.SimpleTranslator; import org.eclipse.jpt.core.utility.TextRange; import org.eclipse.wst.common.internal.emf.resource.Translator; /** * * A representation of the model object 'Version'. * * Provisional API: This interface is part of an interim API that is still * under development and expected to change significantly before reaching * stability. It is available at this early stage to solicit feedback from * pioneering adopters on the understanding that any code that uses this API * will almost certainly be broken (repeatedly) as the API evolves. * * * * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlVersion() * @model kind="class" * @generated */ public class XmlVersion extends AbstractXmlAttributeMapping implements ColumnMapping, XmlConvertibleMapping { /** * The cached value of the '{@link #getColumn() Column}' containment reference. * * * @see #getColumn() * @generated * @ordered */ protected XmlColumn column; /** * The default value of the '{@link #isLob() Lob}' attribute. * * * @see #isLob() * @generated * @ordered */ protected static final boolean LOB_EDEFAULT = false; /** * The cached value of the '{@link #isLob() Lob}' attribute. * * * @see #isLob() * @generated * @ordered */ protected boolean lob = LOB_EDEFAULT; /** * changed this to null and removed the generated flag so emf won't generate over it * we don't want a default for enums, just null if the tag does not exist */ protected static final TemporalType TEMPORAL_EDEFAULT = null; /** * The cached value of the '{@link #getTemporal() Temporal}' attribute. * * * @see #getTemporal() * @generated * @ordered */ protected TemporalType temporal = TEMPORAL_EDEFAULT; /** * The default value of the '{@link #getEnumerated() Enumerated}' attribute. * * * @see #getEnumerated() * @generated * @ordered */ protected static final EnumType ENUMERATED_EDEFAULT = EnumType.ORDINAL; /** * The cached value of the '{@link #getEnumerated() Enumerated}' attribute. * * * @see #getEnumerated() * @generated * @ordered */ protected EnumType enumerated = ENUMERATED_EDEFAULT; /** * * * @generated */ protected XmlVersion() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return OrmPackage.Literals.XML_VERSION; } /** * Returns the value of the 'Column' containment reference. * *

* If the meaning of the 'Column' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Column' containment reference. * @see #setColumn(XmlColumn) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getColumnMapping_Column() * @model containment="true" * @generated */ public XmlColumn getColumn() { return column; } /** * * * @generated */ public NotificationChain basicSetColumn(XmlColumn newColumn, NotificationChain msgs) { XmlColumn oldColumn = column; column = newColumn; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OrmPackage.XML_VERSION__COLUMN, oldColumn, newColumn); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.XmlVersion#getColumn Column}' containment reference. * * * @param value the new value of the 'Column' containment reference. * @see #getColumn() * @generated */ public void setColumn(XmlColumn newColumn) { if (newColumn != column) { NotificationChain msgs = null; if (column != null) msgs = ((InternalEObject)column).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - OrmPackage.XML_VERSION__COLUMN, null, msgs); if (newColumn != null) msgs = ((InternalEObject)newColumn).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - OrmPackage.XML_VERSION__COLUMN, null, msgs); msgs = basicSetColumn(newColumn, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.XML_VERSION__COLUMN, newColumn, newColumn)); } /** * Returns the value of the 'Lob' attribute. * *

* If the meaning of the 'Lob' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Lob' attribute. * @see #setLob(boolean) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlConvertibleMapping_Lob() * @model dataType="org.eclipse.emf.ecore.xml.type.Boolean" * @generated */ public boolean isLob() { return lob; } /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.XmlVersion#isLob Lob}' attribute. * * * @param value the new value of the 'Lob' attribute. * @see #isLob() * @generated */ public void setLob(boolean newLob) { boolean oldLob = lob; lob = newLob; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.XML_VERSION__LOB, oldLob, lob)); } /** * Returns the value of the 'Temporal' attribute. * The literals are from the enumeration {@link org.eclipse.jpt.core.resource.orm.TemporalType}. * *

* If the meaning of the 'Temporal' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Temporal' attribute. * @see org.eclipse.jpt.core.resource.orm.TemporalType * @see #setTemporal(TemporalType) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlConvertibleMapping_Temporal() * @model * @generated */ public TemporalType getTemporal() { return temporal; } /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.XmlVersion#getTemporal Temporal}' attribute. * * * @param value the new value of the 'Temporal' attribute. * @see org.eclipse.jpt.core.resource.orm.TemporalType * @see #getTemporal() * @generated */ public void setTemporal(TemporalType newTemporal) { TemporalType oldTemporal = temporal; temporal = newTemporal == null ? TEMPORAL_EDEFAULT : newTemporal; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.XML_VERSION__TEMPORAL, oldTemporal, temporal)); } /** * Returns the value of the 'Enumerated' attribute. * The literals are from the enumeration {@link org.eclipse.jpt.core.resource.orm.EnumType}. * *

* If the meaning of the 'Enumerated' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Enumerated' attribute. * @see org.eclipse.jpt.core.resource.orm.EnumType * @see #setEnumerated(EnumType) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlConvertibleMapping_Enumerated() * @model * @generated */ public EnumType getEnumerated() { return enumerated; } /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.XmlVersion#getEnumerated Enumerated}' attribute. * * * @param value the new value of the 'Enumerated' attribute. * @see org.eclipse.jpt.core.resource.orm.EnumType * @see #getEnumerated() * @generated */ public void setEnumerated(EnumType newEnumerated) { EnumType oldEnumerated = enumerated; enumerated = newEnumerated == null ? ENUMERATED_EDEFAULT : newEnumerated; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.XML_VERSION__ENUMERATED, oldEnumerated, enumerated)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case OrmPackage.XML_VERSION__COLUMN: return basicSetColumn(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case OrmPackage.XML_VERSION__COLUMN: return getColumn(); case OrmPackage.XML_VERSION__LOB: return isLob(); case OrmPackage.XML_VERSION__TEMPORAL: return getTemporal(); case OrmPackage.XML_VERSION__ENUMERATED: return getEnumerated(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case OrmPackage.XML_VERSION__COLUMN: setColumn((XmlColumn)newValue); return; case OrmPackage.XML_VERSION__LOB: setLob((Boolean)newValue); return; case OrmPackage.XML_VERSION__TEMPORAL: setTemporal((TemporalType)newValue); return; case OrmPackage.XML_VERSION__ENUMERATED: setEnumerated((EnumType)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case OrmPackage.XML_VERSION__COLUMN: setColumn((XmlColumn)null); return; case OrmPackage.XML_VERSION__LOB: setLob(LOB_EDEFAULT); return; case OrmPackage.XML_VERSION__TEMPORAL: setTemporal(TEMPORAL_EDEFAULT); return; case OrmPackage.XML_VERSION__ENUMERATED: setEnumerated(ENUMERATED_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case OrmPackage.XML_VERSION__COLUMN: return column != null; case OrmPackage.XML_VERSION__LOB: return lob != LOB_EDEFAULT; case OrmPackage.XML_VERSION__TEMPORAL: return temporal != TEMPORAL_EDEFAULT; case OrmPackage.XML_VERSION__ENUMERATED: return enumerated != ENUMERATED_EDEFAULT; } return super.eIsSet(featureID); } /** * * * @generated */ @Override public int eBaseStructuralFeatureID(int derivedFeatureID, Class baseClass) { if (baseClass == ColumnMapping.class) { switch (derivedFeatureID) { case OrmPackage.XML_VERSION__COLUMN: return OrmPackage.COLUMN_MAPPING__COLUMN; default: return -1; } } if (baseClass == XmlConvertibleMapping.class) { switch (derivedFeatureID) { case OrmPackage.XML_VERSION__LOB: return OrmPackage.XML_CONVERTIBLE_MAPPING__LOB; case OrmPackage.XML_VERSION__TEMPORAL: return OrmPackage.XML_CONVERTIBLE_MAPPING__TEMPORAL; case OrmPackage.XML_VERSION__ENUMERATED: return OrmPackage.XML_CONVERTIBLE_MAPPING__ENUMERATED; default: return -1; } } return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass); } /** * * * @generated */ @Override public int eDerivedStructuralFeatureID(int baseFeatureID, Class baseClass) { if (baseClass == ColumnMapping.class) { switch (baseFeatureID) { case OrmPackage.COLUMN_MAPPING__COLUMN: return OrmPackage.XML_VERSION__COLUMN; default: return -1; } } if (baseClass == XmlConvertibleMapping.class) { switch (baseFeatureID) { case OrmPackage.XML_CONVERTIBLE_MAPPING__LOB: return OrmPackage.XML_VERSION__LOB; case OrmPackage.XML_CONVERTIBLE_MAPPING__TEMPORAL: return OrmPackage.XML_VERSION__TEMPORAL; case OrmPackage.XML_CONVERTIBLE_MAPPING__ENUMERATED: return OrmPackage.XML_VERSION__ENUMERATED; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (lob: "); result.append(lob); result.append(", temporal: "); result.append(temporal); result.append(", enumerated: "); result.append(enumerated); result.append(')'); return result.toString(); } public TextRange getEnumeratedTextRange() { throw new UnsupportedOperationException("enumerated not supported by version mappings"); } public TextRange getLobTextRange() { throw new UnsupportedOperationException("lob not supported by version mappings"); } public TextRange getTemporalTextRange() { return getAttributeTextRange(JPA.TEMPORAL); } public String getMappingKey() { return MappingKeys.VERSION_ATTRIBUTE_MAPPING_KEY; } // ********** translators ********** public static Translator buildTranslator(String elementName, EStructuralFeature structuralFeature) { return new SimpleTranslator(elementName, structuralFeature, buildTranslatorChildren()); } private static Translator[] buildTranslatorChildren() { return new Translator[] { buildNameTranslator(), buildAccessTranslator(), buildColumnTranslator(), buildTemporalTranslator(), }; } protected static Translator buildColumnTranslator() { return XmlColumn.buildTranslator(JPA.COLUMN, OrmPackage.eINSTANCE.getColumnMapping_Column()); } protected static Translator buildTemporalTranslator() { return new Translator(JPA.TEMPORAL, OrmPackage.eINSTANCE.getXmlConvertibleMapping_Temporal()); } }