blob: cf90587bb61c270e5e632d3c43a56f2807a13e14 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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.internal.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.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.jpt.core.internal.resource.common.JpaEObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Id</b></em>'.
* <!-- end-user-doc -->
*
*
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getIdImpl()
* @model kind="class"
* @generated
*/
public class IdImpl extends JpaEObject implements Id
{
/**
* 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 cached value of the '{@link #getColumn() <em>Column</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getColumn()
* @generated
* @ordered
*/
protected Column column;
/**
* The cached value of the '{@link #getGeneratedValue() <em>Generated Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getGeneratedValue()
* @generated
* @ordered
*/
protected GeneratedValue generatedValue;
/**
* 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() <em>Temporal</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTemporal()
* @generated
* @ordered
*/
protected TemporalType temporal = TEMPORAL_EDEFAULT;
/**
* The cached value of the '{@link #getTableGenerator() <em>Table Generator</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTableGenerator()
* @generated
* @ordered
*/
protected TableGenerator tableGenerator;
/**
* The cached value of the '{@link #getSequenceGenerator() <em>Sequence Generator</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getSequenceGenerator()
* @generated
* @ordered
*/
protected SequenceGenerator sequenceGenerator;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected IdImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass()
{
return OrmPackage.Literals.ID_IMPL;
}
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getAttributeMapping_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.internal.resource.orm.IdImpl#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
public void setName(String newName)
{
String oldName = name;
name = newName;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__NAME, oldName, name));
}
/**
* Returns the value of the '<em><b>Column</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Column</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Column</em>' containment reference.
* @see #setColumn(Column)
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getColumnMapping_Column()
* @model containment="true"
* @generated
*/
public Column getColumn()
{
return column;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetColumn(Column newColumn, NotificationChain msgs)
{
Column oldColumn = column;
column = newColumn;
if (eNotificationRequired())
{
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__COLUMN, oldColumn, newColumn);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* Sets the value of the '{@link org.eclipse.jpt.core.internal.resource.orm.IdImpl#getColumn <em>Column</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Column</em>' containment reference.
* @see #getColumn()
* @generated
*/
public void setColumn(Column newColumn)
{
if (newColumn != column)
{
NotificationChain msgs = null;
if (column != null)
msgs = ((InternalEObject)column).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__COLUMN, null, msgs);
if (newColumn != null)
msgs = ((InternalEObject)newColumn).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__COLUMN, null, msgs);
msgs = basicSetColumn(newColumn, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__COLUMN, newColumn, newColumn));
}
/**
* Returns the value of the '<em><b>Generated Value</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Generated Value</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Generated Value</em>' containment reference.
* @see #setGeneratedValue(GeneratedValue)
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getId_GeneratedValue()
* @model containment="true"
* @generated
*/
public GeneratedValue getGeneratedValue()
{
return generatedValue;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetGeneratedValue(GeneratedValue newGeneratedValue, NotificationChain msgs)
{
GeneratedValue oldGeneratedValue = generatedValue;
generatedValue = newGeneratedValue;
if (eNotificationRequired())
{
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__GENERATED_VALUE, oldGeneratedValue, newGeneratedValue);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* Sets the value of the '{@link org.eclipse.jpt.core.internal.resource.orm.IdImpl#getGeneratedValue <em>Generated Value</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Generated Value</em>' containment reference.
* @see #getGeneratedValue()
* @generated
*/
public void setGeneratedValue(GeneratedValue newGeneratedValue)
{
if (newGeneratedValue != generatedValue)
{
NotificationChain msgs = null;
if (generatedValue != null)
msgs = ((InternalEObject)generatedValue).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__GENERATED_VALUE, null, msgs);
if (newGeneratedValue != null)
msgs = ((InternalEObject)newGeneratedValue).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__GENERATED_VALUE, null, msgs);
msgs = basicSetGeneratedValue(newGeneratedValue, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__GENERATED_VALUE, newGeneratedValue, newGeneratedValue));
}
/**
* Returns the value of the '<em><b>Temporal</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.jpt.core.internal.resource.orm.TemporalType}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Temporal</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Temporal</em>' attribute.
* @see org.eclipse.jpt.core.internal.resource.orm.TemporalType
* @see #setTemporal(TemporalType)
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getId_Temporal()
* @model
* @generated
*/
public TemporalType getTemporal()
{
return temporal;
}
/**
* Sets the value of the '{@link org.eclipse.jpt.core.internal.resource.orm.IdImpl#getTemporal <em>Temporal</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Temporal</em>' attribute.
* @see org.eclipse.jpt.core.internal.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.ID_IMPL__TEMPORAL, oldTemporal, temporal));
}
/**
* Returns the value of the '<em><b>Table Generator</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Table Generator</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Table Generator</em>' containment reference.
* @see #setTableGenerator(TableGenerator)
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getId_TableGenerator()
* @model containment="true"
* @generated
*/
public TableGenerator getTableGenerator()
{
return tableGenerator;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetTableGenerator(TableGenerator newTableGenerator, NotificationChain msgs)
{
TableGenerator oldTableGenerator = tableGenerator;
tableGenerator = newTableGenerator;
if (eNotificationRequired())
{
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__TABLE_GENERATOR, oldTableGenerator, newTableGenerator);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* Sets the value of the '{@link org.eclipse.jpt.core.internal.resource.orm.IdImpl#getTableGenerator <em>Table Generator</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Table Generator</em>' containment reference.
* @see #getTableGenerator()
* @generated
*/
public void setTableGenerator(TableGenerator newTableGenerator)
{
if (newTableGenerator != tableGenerator)
{
NotificationChain msgs = null;
if (tableGenerator != null)
msgs = ((InternalEObject)tableGenerator).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__TABLE_GENERATOR, null, msgs);
if (newTableGenerator != null)
msgs = ((InternalEObject)newTableGenerator).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__TABLE_GENERATOR, null, msgs);
msgs = basicSetTableGenerator(newTableGenerator, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__TABLE_GENERATOR, newTableGenerator, newTableGenerator));
}
/**
* Returns the value of the '<em><b>Sequence Generator</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Sequence Generator</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Sequence Generator</em>' containment reference.
* @see #setSequenceGenerator(SequenceGenerator)
* @see org.eclipse.jpt.core.internal.resource.orm.OrmPackage#getId_SequenceGenerator()
* @model containment="true"
* @generated
*/
public SequenceGenerator getSequenceGenerator()
{
return sequenceGenerator;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetSequenceGenerator(SequenceGenerator newSequenceGenerator, NotificationChain msgs)
{
SequenceGenerator oldSequenceGenerator = sequenceGenerator;
sequenceGenerator = newSequenceGenerator;
if (eNotificationRequired())
{
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__SEQUENCE_GENERATOR, oldSequenceGenerator, newSequenceGenerator);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* Sets the value of the '{@link org.eclipse.jpt.core.internal.resource.orm.IdImpl#getSequenceGenerator <em>Sequence Generator</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Sequence Generator</em>' containment reference.
* @see #getSequenceGenerator()
* @generated
*/
public void setSequenceGenerator(SequenceGenerator newSequenceGenerator)
{
if (newSequenceGenerator != sequenceGenerator)
{
NotificationChain msgs = null;
if (sequenceGenerator != null)
msgs = ((InternalEObject)sequenceGenerator).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__SEQUENCE_GENERATOR, null, msgs);
if (newSequenceGenerator != null)
msgs = ((InternalEObject)newSequenceGenerator).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - OrmPackage.ID_IMPL__SEQUENCE_GENERATOR, null, msgs);
msgs = basicSetSequenceGenerator(newSequenceGenerator, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.ID_IMPL__SEQUENCE_GENERATOR, newSequenceGenerator, newSequenceGenerator));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs)
{
switch (featureID)
{
case OrmPackage.ID_IMPL__COLUMN:
return basicSetColumn(null, msgs);
case OrmPackage.ID_IMPL__GENERATED_VALUE:
return basicSetGeneratedValue(null, msgs);
case OrmPackage.ID_IMPL__TABLE_GENERATOR:
return basicSetTableGenerator(null, msgs);
case OrmPackage.ID_IMPL__SEQUENCE_GENERATOR:
return basicSetSequenceGenerator(null, 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 OrmPackage.ID_IMPL__NAME:
return getName();
case OrmPackage.ID_IMPL__COLUMN:
return getColumn();
case OrmPackage.ID_IMPL__GENERATED_VALUE:
return getGeneratedValue();
case OrmPackage.ID_IMPL__TEMPORAL:
return getTemporal();
case OrmPackage.ID_IMPL__TABLE_GENERATOR:
return getTableGenerator();
case OrmPackage.ID_IMPL__SEQUENCE_GENERATOR:
return getSequenceGenerator();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue)
{
switch (featureID)
{
case OrmPackage.ID_IMPL__NAME:
setName((String)newValue);
return;
case OrmPackage.ID_IMPL__COLUMN:
setColumn((Column)newValue);
return;
case OrmPackage.ID_IMPL__GENERATED_VALUE:
setGeneratedValue((GeneratedValue)newValue);
return;
case OrmPackage.ID_IMPL__TEMPORAL:
setTemporal((TemporalType)newValue);
return;
case OrmPackage.ID_IMPL__TABLE_GENERATOR:
setTableGenerator((TableGenerator)newValue);
return;
case OrmPackage.ID_IMPL__SEQUENCE_GENERATOR:
setSequenceGenerator((SequenceGenerator)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID)
{
switch (featureID)
{
case OrmPackage.ID_IMPL__NAME:
setName(NAME_EDEFAULT);
return;
case OrmPackage.ID_IMPL__COLUMN:
setColumn((Column)null);
return;
case OrmPackage.ID_IMPL__GENERATED_VALUE:
setGeneratedValue((GeneratedValue)null);
return;
case OrmPackage.ID_IMPL__TEMPORAL:
setTemporal(TEMPORAL_EDEFAULT);
return;
case OrmPackage.ID_IMPL__TABLE_GENERATOR:
setTableGenerator((TableGenerator)null);
return;
case OrmPackage.ID_IMPL__SEQUENCE_GENERATOR:
setSequenceGenerator((SequenceGenerator)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID)
{
switch (featureID)
{
case OrmPackage.ID_IMPL__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case OrmPackage.ID_IMPL__COLUMN:
return column != null;
case OrmPackage.ID_IMPL__GENERATED_VALUE:
return generatedValue != null;
case OrmPackage.ID_IMPL__TEMPORAL:
return temporal != TEMPORAL_EDEFAULT;
case OrmPackage.ID_IMPL__TABLE_GENERATOR:
return tableGenerator != null;
case OrmPackage.ID_IMPL__SEQUENCE_GENERATOR:
return sequenceGenerator != null;
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass)
{
if (baseClass == ColumnMapping.class)
{
switch (derivedFeatureID)
{
case OrmPackage.ID_IMPL__COLUMN: return OrmPackage.COLUMN_MAPPING__COLUMN;
default: return -1;
}
}
return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eDerivedStructuralFeatureID(int baseFeatureID, Class<?> baseClass)
{
if (baseClass == ColumnMapping.class)
{
switch (baseFeatureID)
{
case OrmPackage.COLUMN_MAPPING__COLUMN: return OrmPackage.ID_IMPL__COLUMN;
default: return -1;
}
}
return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString()
{
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (name: ");
result.append(name);
result.append(", temporal: ");
result.append(temporal);
result.append(')');
return result.toString();
}
} // Id