/** */ package at.bestsolution.emf.navi.tests.model.sample.impl; import at.bestsolution.emf.navi.tests.model.sample.Company; import at.bestsolution.emf.navi.tests.model.sample.Department; import at.bestsolution.emf.navi.tests.model.sample.SamplePackage; 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.MinimalEObjectImpl; import org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Company</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link at.bestsolution.emf.navi.tests.model.sample.impl.CompanyImpl#getName <em>Name</em>}</li> * <li>{@link at.bestsolution.emf.navi.tests.model.sample.impl.CompanyImpl#getDepartments <em>Departments</em>}</li> * </ul> * </p> * * @generated */ public class CompanyImpl extends MinimalEObjectImpl.Container implements Company { /** * 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 #getDepartments() <em>Departments</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDepartments() * @generated * @ordered */ protected EList<Department> departments; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CompanyImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SamplePackage.Literals.COMPANY; } /** * <!-- 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, SamplePackage.COMPANY__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Department> getDepartments() { if (departments == null) { departments = new EObjectContainmentWithInverseEList<Department>(Department.class, this, SamplePackage.COMPANY__DEPARTMENTS, SamplePackage.DEPARTMENT__COMPANY); } return departments; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @SuppressWarnings("unchecked") @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case SamplePackage.COMPANY__DEPARTMENTS: return ((InternalEList<InternalEObject>)(InternalEList<?>)getDepartments()).basicAdd(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 SamplePackage.COMPANY__DEPARTMENTS: return ((InternalEList<?>)getDepartments()).basicRemove(otherEnd, 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 SamplePackage.COMPANY__NAME: return getName(); case SamplePackage.COMPANY__DEPARTMENTS: return getDepartments(); } 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 SamplePackage.COMPANY__NAME: setName((String)newValue); return; case SamplePackage.COMPANY__DEPARTMENTS: getDepartments().clear(); getDepartments().addAll((Collection<? extends Department>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SamplePackage.COMPANY__NAME: setName(NAME_EDEFAULT); return; case SamplePackage.COMPANY__DEPARTMENTS: getDepartments().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SamplePackage.COMPANY__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case SamplePackage.COMPANY__DEPARTMENTS: return departments != null && !departments.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(" (name: "); result.append(name); result.append(')'); return result.toString(); } } //CompanyImpl