/** * This is my code. */ package org.examples.library.hr.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.examples.library.Library; import org.examples.library.LibraryPackage; import org.examples.library.hr.HrPackage; import org.examples.library.hr.Person; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Person</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.examples.library.hr.impl.PersonImpl#getName <em>Name</em>}</li> * <li>{@link org.examples.library.hr.impl.PersonImpl#getLibrary <em>Library</em>}</li> * </ul> * </p> * * @generated */ public class PersonImpl extends EObjectImpl implements Person { /** * 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 #getLibrary() <em>Library</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getLibrary() * @generated * @ordered */ protected Library library; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected PersonImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return HrPackage.Literals.PERSON; } /** * <!-- 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, HrPackage.PERSON__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Library getLibrary() { if (library != null && library.eIsProxy()) { InternalEObject oldLibrary = (InternalEObject)library; library = (Library)eResolveProxy(oldLibrary); if (library != oldLibrary) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, HrPackage.PERSON__LIBRARY, oldLibrary, library)); } } return library; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Library basicGetLibrary() { return library; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetLibrary(Library newLibrary, NotificationChain msgs) { Library oldLibrary = library; library = newLibrary; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, HrPackage.PERSON__LIBRARY, oldLibrary, newLibrary); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setLibrary(Library newLibrary) { if (newLibrary != library) { NotificationChain msgs = null; if (library != null) msgs = ((InternalEObject)library).eInverseRemove(this, LibraryPackage.LIBRARY__EMPLOYEES, Library.class, msgs); if (newLibrary != null) msgs = ((InternalEObject)newLibrary).eInverseAdd(this, LibraryPackage.LIBRARY__EMPLOYEES, Library.class, msgs); msgs = basicSetLibrary(newLibrary, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, HrPackage.PERSON__LIBRARY, newLibrary, newLibrary)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case HrPackage.PERSON__LIBRARY: if (library != null) msgs = ((InternalEObject)library).eInverseRemove(this, LibraryPackage.LIBRARY__EMPLOYEES, Library.class, msgs); return basicSetLibrary((Library)otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case HrPackage.PERSON__LIBRARY: return basicSetLibrary(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 HrPackage.PERSON__NAME: return getName(); case HrPackage.PERSON__LIBRARY: if (resolve) return getLibrary(); return basicGetLibrary(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case HrPackage.PERSON__NAME: setName((String)newValue); return; case HrPackage.PERSON__LIBRARY: setLibrary((Library)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case HrPackage.PERSON__NAME: setName(NAME_EDEFAULT); return; case HrPackage.PERSON__LIBRARY: setLibrary((Library)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case HrPackage.PERSON__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case HrPackage.PERSON__LIBRARY: return library != null; } 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(" (name: "); //$NON-NLS-1$ result.append(name); result.append(')'); return result.toString(); } } //PersonImpl