/** * <copyright> * </copyright> * * $Id: LibraryImpl.java,v 1.4 2011/08/25 14:34:34 mtaal Exp $ */ package extlibrary.impl; import extlibrary.Book; import extlibrary.Borrower; import extlibrary.Employee; import extlibrary.ExtlibraryPackage; import extlibrary.Item; import extlibrary.Library; import extlibrary.Writer; import java.util.Collection; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; 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.eclipse.emf.ecore.util.BasicFeatureMap; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList; import org.eclipse.emf.ecore.util.EObjectResolvingEList; import org.eclipse.emf.ecore.util.EcoreUtil; import org.eclipse.emf.ecore.util.FeatureMap; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> An implementation of the model object '<em><b>Library</b></em>'. <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link extlibrary.impl.LibraryImpl#getAddress <em>Address</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getName <em>Name</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getWriters <em>Writers</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getEmployees <em>Employees</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getBorrowers <em>Borrowers</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getStock <em>Stock</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getBooks <em>Books</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getBranches <em>Branches</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getParentBranch <em>Parent Branch</em>}</li> * <li>{@link extlibrary.impl.LibraryImpl#getPeople <em>People</em>}</li> * </ul> * </p> * * @generated */ public class LibraryImpl extends EObjectImpl implements Library { /** * The default value of the '{@link #getAddress() <em>Address</em>}' attribute. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @see #getAddress() * @generated * @ordered */ protected static final String ADDRESS_EDEFAULT = null; /** * The cached value of the '{@link #getAddress() <em>Address</em>}' attribute. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @see #getAddress() * @generated * @ordered */ protected String address = ADDRESS_EDEFAULT; /** * 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 #getStock() <em>Stock</em>}' containment reference list. <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getStock() * @generated * @ordered */ protected EList<Item> stock; /** * The cached value of the '{@link #getBooks() <em>Books</em>}' reference list. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @see #getBooks() * @generated * @ordered */ protected EList<Book> books; /** * The cached value of the '{@link #getBranches() <em>Branches</em>}' containment reference list. <!-- begin-user-doc * --> <!-- end-user-doc --> * * @see #getBranches() * @generated * @ordered */ protected EList<Library> branches; /** * The cached value of the '{@link #getPeople() <em>People</em>}' attribute list. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @see #getPeople() * @generated * @ordered */ protected FeatureMap people; /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ protected LibraryImpl() { super(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override protected EClass eStaticClass() { return ExtlibraryPackage.Literals.LIBRARY; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public String getAddress() { return address; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public void setAddress(String newAddress) { String oldAddress = address; address = newAddress; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ExtlibraryPackage.LIBRARY__ADDRESS, oldAddress, address)); } /** * <!-- 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, ExtlibraryPackage.LIBRARY__NAME, oldName, name)); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public EList<Writer> getWriters() { return getPeople().list(ExtlibraryPackage.Literals.LIBRARY__WRITERS); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public EList<Employee> getEmployees() { return getPeople().list(ExtlibraryPackage.Literals.LIBRARY__EMPLOYEES); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public EList<Borrower> getBorrowers() { return getPeople().list(ExtlibraryPackage.Literals.LIBRARY__BORROWERS); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public EList<Item> getStock() { if (stock == null) { stock = new EObjectContainmentEList<Item>(Item.class, this, ExtlibraryPackage.LIBRARY__STOCK); } return stock; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public EList<Book> getBooks() { if (books == null) { books = new EObjectResolvingEList<Book>(Book.class, this, ExtlibraryPackage.LIBRARY__BOOKS); } return books; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public EList<Library> getBranches() { if (branches == null) { branches = new EObjectContainmentWithInverseEList<Library>(Library.class, this, ExtlibraryPackage.LIBRARY__BRANCHES, ExtlibraryPackage.LIBRARY__PARENT_BRANCH); } return branches; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public Library getParentBranch() { if (eContainerFeatureID() != ExtlibraryPackage.LIBRARY__PARENT_BRANCH) return null; return (Library) eContainer(); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public NotificationChain basicSetParentBranch(Library newParentBranch, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject) newParentBranch, ExtlibraryPackage.LIBRARY__PARENT_BRANCH, msgs); return msgs; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public void setParentBranch(Library newParentBranch) { if (newParentBranch != eInternalContainer() || (eContainerFeatureID() != ExtlibraryPackage.LIBRARY__PARENT_BRANCH && newParentBranch != null)) { if (EcoreUtil.isAncestor(this, newParentBranch)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newParentBranch != null) msgs = ((InternalEObject) newParentBranch).eInverseAdd(this, ExtlibraryPackage.LIBRARY__BRANCHES, Library.class, msgs); msgs = basicSetParentBranch(newParentBranch, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ExtlibraryPackage.LIBRARY__PARENT_BRANCH, newParentBranch, newParentBranch)); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ public FeatureMap getPeople() { if (people == null) { people = new BasicFeatureMap(this, ExtlibraryPackage.LIBRARY__PEOPLE); } return people; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @SuppressWarnings("unchecked") @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ExtlibraryPackage.LIBRARY__BRANCHES: return ((InternalEList<InternalEObject>) (InternalEList<?>) getBranches()).basicAdd(otherEnd, msgs); case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetParentBranch((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 ExtlibraryPackage.LIBRARY__WRITERS: return ((InternalEList<?>) getWriters()).basicRemove(otherEnd, msgs); case ExtlibraryPackage.LIBRARY__EMPLOYEES: return ((InternalEList<?>) getEmployees()).basicRemove(otherEnd, msgs); case ExtlibraryPackage.LIBRARY__BORROWERS: return ((InternalEList<?>) getBorrowers()).basicRemove(otherEnd, msgs); case ExtlibraryPackage.LIBRARY__STOCK: return ((InternalEList<?>) getStock()).basicRemove(otherEnd, msgs); case ExtlibraryPackage.LIBRARY__BRANCHES: return ((InternalEList<?>) getBranches()).basicRemove(otherEnd, msgs); case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: return basicSetParentBranch(null, msgs); case ExtlibraryPackage.LIBRARY__PEOPLE: return ((InternalEList<?>) getPeople()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: return eInternalContainer().eInverseRemove(this, ExtlibraryPackage.LIBRARY__BRANCHES, Library.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ExtlibraryPackage.LIBRARY__ADDRESS: return getAddress(); case ExtlibraryPackage.LIBRARY__NAME: return getName(); case ExtlibraryPackage.LIBRARY__WRITERS: return getWriters(); case ExtlibraryPackage.LIBRARY__EMPLOYEES: return getEmployees(); case ExtlibraryPackage.LIBRARY__BORROWERS: return getBorrowers(); case ExtlibraryPackage.LIBRARY__STOCK: return getStock(); case ExtlibraryPackage.LIBRARY__BOOKS: return getBooks(); case ExtlibraryPackage.LIBRARY__BRANCHES: return getBranches(); case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: return getParentBranch(); case ExtlibraryPackage.LIBRARY__PEOPLE: if (coreType) return getPeople(); return ((FeatureMap.Internal) getPeople()).getWrapper(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ExtlibraryPackage.LIBRARY__ADDRESS: setAddress((String) newValue); return; case ExtlibraryPackage.LIBRARY__NAME: setName((String) newValue); return; case ExtlibraryPackage.LIBRARY__WRITERS: getWriters().clear(); getWriters().addAll((Collection<? extends Writer>) newValue); return; case ExtlibraryPackage.LIBRARY__EMPLOYEES: getEmployees().clear(); getEmployees().addAll((Collection<? extends Employee>) newValue); return; case ExtlibraryPackage.LIBRARY__BORROWERS: getBorrowers().clear(); getBorrowers().addAll((Collection<? extends Borrower>) newValue); return; case ExtlibraryPackage.LIBRARY__STOCK: getStock().clear(); getStock().addAll((Collection<? extends Item>) newValue); return; case ExtlibraryPackage.LIBRARY__BOOKS: getBooks().clear(); getBooks().addAll((Collection<? extends Book>) newValue); return; case ExtlibraryPackage.LIBRARY__BRANCHES: getBranches().clear(); getBranches().addAll((Collection<? extends Library>) newValue); return; case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: setParentBranch((Library) newValue); return; case ExtlibraryPackage.LIBRARY__PEOPLE: ((FeatureMap.Internal) getPeople()).set(newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ExtlibraryPackage.LIBRARY__ADDRESS: setAddress(ADDRESS_EDEFAULT); return; case ExtlibraryPackage.LIBRARY__NAME: setName(NAME_EDEFAULT); return; case ExtlibraryPackage.LIBRARY__WRITERS: getWriters().clear(); return; case ExtlibraryPackage.LIBRARY__EMPLOYEES: getEmployees().clear(); return; case ExtlibraryPackage.LIBRARY__BORROWERS: getBorrowers().clear(); return; case ExtlibraryPackage.LIBRARY__STOCK: getStock().clear(); return; case ExtlibraryPackage.LIBRARY__BOOKS: getBooks().clear(); return; case ExtlibraryPackage.LIBRARY__BRANCHES: getBranches().clear(); return; case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: setParentBranch((Library) null); return; case ExtlibraryPackage.LIBRARY__PEOPLE: getPeople().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ExtlibraryPackage.LIBRARY__ADDRESS: return ADDRESS_EDEFAULT == null ? address != null : !ADDRESS_EDEFAULT.equals(address); case ExtlibraryPackage.LIBRARY__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case ExtlibraryPackage.LIBRARY__WRITERS: return !getWriters().isEmpty(); case ExtlibraryPackage.LIBRARY__EMPLOYEES: return !getEmployees().isEmpty(); case ExtlibraryPackage.LIBRARY__BORROWERS: return !getBorrowers().isEmpty(); case ExtlibraryPackage.LIBRARY__STOCK: return stock != null && !stock.isEmpty(); case ExtlibraryPackage.LIBRARY__BOOKS: return books != null && !books.isEmpty(); case ExtlibraryPackage.LIBRARY__BRANCHES: return branches != null && !branches.isEmpty(); case ExtlibraryPackage.LIBRARY__PARENT_BRANCH: return getParentBranch() != null; case ExtlibraryPackage.LIBRARY__PEOPLE: return people != null && !people.isEmpty(); } 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(" (address: "); result.append(address); result.append(", name: "); result.append(name); result.append(", people: "); result.append(people); result.append(')'); return result.toString(); } } // LibraryImpl