/** * * * * $Id: PersonImpl.java,v 1.1 2008/07/13 13:12:37 mtaal Exp $ */ package org.eclipse.emf.teneo.samples.emf.annotations.attroverridesecondarytable.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.EObjectImpl; import org.eclipse.emf.teneo.samples.emf.annotations.attroverridesecondarytable.AttroverridesecondarytablePackage; import org.eclipse.emf.teneo.samples.emf.annotations.attroverridesecondarytable.Person; /** * * An implementation of the model object 'Person'. * *

* The following features are implemented: *

*

* * @generated */ public class PersonImpl extends EObjectImpl implements Person { /** * 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; /** * The default value of the '{@link #getAge() Age}' attribute. * * * @see #getAge() * @generated * @ordered */ protected static final int AGE_EDEFAULT = 0; /** * The cached value of the '{@link #getAge() Age}' attribute. * * * @see #getAge() * @generated * @ordered */ protected int age = AGE_EDEFAULT; /** * * * @generated */ protected PersonImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return AttroverridesecondarytablePackage.Literals.PERSON; } /** * * * @generated */ public String getName() { return name; } /** * * * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, AttroverridesecondarytablePackage.PERSON__NAME, oldName, name)); } /** * * * @generated */ public int getAge() { return age; } /** * * * @generated */ public void setAge(int newAge) { int oldAge = age; age = newAge; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, AttroverridesecondarytablePackage.PERSON__AGE, oldAge, age)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case AttroverridesecondarytablePackage.PERSON__NAME: return getName(); case AttroverridesecondarytablePackage.PERSON__AGE: return new Integer(getAge()); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case AttroverridesecondarytablePackage.PERSON__NAME: setName((String)newValue); return; case AttroverridesecondarytablePackage.PERSON__AGE: setAge(((Integer)newValue).intValue()); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case AttroverridesecondarytablePackage.PERSON__NAME: setName(NAME_EDEFAULT); return; case AttroverridesecondarytablePackage.PERSON__AGE: setAge(AGE_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case AttroverridesecondarytablePackage.PERSON__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case AttroverridesecondarytablePackage.PERSON__AGE: return age != AGE_EDEFAULT; } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (name: "); result.append(name); result.append(", age: "); result.append(age); result.append(')'); return result.toString(); } } //PersonImpl