/******************************************************************************* * Copyright (c) 2008, 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.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.jpt.core.resource.xml.AbstractJpaEObject; import org.eclipse.jpt.core.utility.TextRange; import org.eclipse.wst.common.internal.emf.resource.Translator; /** * * A representation of the model object 'Abstract Xml Attribute Mapping'. * * 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#getAbstractXmlAttributeMapping() * @model kind="class" abstract="true" * @generated */ public abstract class AbstractXmlAttributeMapping extends AbstractJpaEObject implements XmlAttributeMapping { /** * 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 AccessType ACCESS_EDEFAULT = null; /** * The cached value of the '{@link #getAccess() Access}' attribute. * * * @see #getAccess() * @generated * @ordered */ protected AccessType access = ACCESS_EDEFAULT; /** * The default value of the '{@link #getName() Name}' attribute. * * * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() Name}' attribute. * * * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * * * @generated */ protected AbstractXmlAttributeMapping() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return OrmPackage.Literals.ABSTRACT_XML_ATTRIBUTE_MAPPING; } /** * Returns the value of the 'Access' attribute. * The literals are from the enumeration {@link org.eclipse.jpt.core.resource.orm.AccessType}. * *

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

* * @return the value of the 'Access' attribute. * @see org.eclipse.jpt.core.resource.orm.AccessType * @see #setAccess(AccessType) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlAccessHolder_Access() * @model * @generated */ public AccessType getAccess() { return access; } /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.AbstractXmlAttributeMapping#getAccess Access}' attribute. * * * @param value the new value of the 'Access' attribute. * @see org.eclipse.jpt.core.resource.orm.AccessType * @see #getAccess() * @generated */ public void setAccess(AccessType newAccess) { AccessType oldAccess = access; access = newAccess == null ? ACCESS_EDEFAULT : newAccess; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__ACCESS, oldAccess, access)); } /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.jpt.core.resource.orm.OrmPackage#getXmlAttributeMapping_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * @generated */ public String getName() { return name; } /** * Sets the value of the '{@link org.eclipse.jpt.core.resource.orm.AbstractXmlAttributeMapping#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__NAME, oldName, name)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__ACCESS: return getAccess(); case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__NAME: return getName(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__ACCESS: setAccess((AccessType)newValue); return; case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__NAME: setName((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__ACCESS: setAccess(ACCESS_EDEFAULT); return; case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__NAME: setName(NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__ACCESS: return access != ACCESS_EDEFAULT; case OrmPackage.ABSTRACT_XML_ATTRIBUTE_MAPPING__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (access: "); result.append(access); result.append(", name: "); result.append(name); result.append(')'); return result.toString(); } // ********** validation *********** public TextRange getNameTextRange() { return getAttributeTextRange(JPA.NAME); } // ********** translators ********** protected static Translator buildNameTranslator() { return new Translator(JPA.NAME, OrmPackage.eINSTANCE.getXmlAttributeMapping_Name(), Translator.DOM_ATTRIBUTE); } protected static Translator buildAccessTranslator() { return new Translator(JPA.ACCESS, OrmPackage.eINSTANCE.getXmlAccessHolder_Access(), Translator.DOM_ATTRIBUTE); } }