/** * Copyright (c) 2011 Object Management Group (SAEM metamodel) * Copyright (c) 2010-2011 United States Government as represented by the Administrator for The National Aeronautics and Space Administration. All Rights Reserved. */ package net.certware.evidence.evidence.impl; import java.util.Collection; import net.certware.evidence.evidence.AdministrativeElement; import net.certware.evidence.evidence.Description; import net.certware.evidence.evidence.EvidencePackage; 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.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Administrative Element</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link net.certware.evidence.evidence.impl.AdministrativeElementImpl#getId <em>Id</em>}</li> * <li>{@link net.certware.evidence.evidence.impl.AdministrativeElementImpl#getName <em>Name</em>}</li> * <li>{@link net.certware.evidence.evidence.impl.AdministrativeElementImpl#getDescription <em>Description</em>}</li> * </ul> * </p> * * @generated */ public abstract class AdministrativeElementImpl extends ElementImpl implements AdministrativeElement { /** * The default value of the '{@link #getId() <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected static final String ID_EDEFAULT = null; /** * The cached value of the '{@link #getId() <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected String id = ID_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 #getDescription() <em>Description</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getDescription() * @generated * @ordered */ protected EList<Description> description; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected AdministrativeElementImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return EvidencePackage.Literals.ADMINISTRATIVE_ELEMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getId() { return id; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setId(String newId) { String oldId = id; id = newId; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, EvidencePackage.ADMINISTRATIVE_ELEMENT__ID, oldId, id)); } /** * <!-- 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, EvidencePackage.ADMINISTRATIVE_ELEMENT__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<Description> getDescription() { if (description == null) { description = new EObjectContainmentEList<Description>(Description.class, this, EvidencePackage.ADMINISTRATIVE_ELEMENT__DESCRIPTION); } return description; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case EvidencePackage.ADMINISTRATIVE_ELEMENT__DESCRIPTION: return ((InternalEList<?>)getDescription()).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 EvidencePackage.ADMINISTRATIVE_ELEMENT__ID: return getId(); case EvidencePackage.ADMINISTRATIVE_ELEMENT__NAME: return getName(); case EvidencePackage.ADMINISTRATIVE_ELEMENT__DESCRIPTION: return getDescription(); } 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 EvidencePackage.ADMINISTRATIVE_ELEMENT__ID: setId((String)newValue); return; case EvidencePackage.ADMINISTRATIVE_ELEMENT__NAME: setName((String)newValue); return; case EvidencePackage.ADMINISTRATIVE_ELEMENT__DESCRIPTION: getDescription().clear(); getDescription().addAll((Collection<? extends Description>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case EvidencePackage.ADMINISTRATIVE_ELEMENT__ID: setId(ID_EDEFAULT); return; case EvidencePackage.ADMINISTRATIVE_ELEMENT__NAME: setName(NAME_EDEFAULT); return; case EvidencePackage.ADMINISTRATIVE_ELEMENT__DESCRIPTION: getDescription().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case EvidencePackage.ADMINISTRATIVE_ELEMENT__ID: return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id); case EvidencePackage.ADMINISTRATIVE_ELEMENT__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case EvidencePackage.ADMINISTRATIVE_ELEMENT__DESCRIPTION: return description != null && !description.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(" (id: "); //$NON-NLS-1$ result.append(id); result.append(", name: "); //$NON-NLS-1$ result.append(name); result.append(')'); return result.toString(); } } //AdministrativeElementImpl