/** * <copyright> * </copyright> * */ package org.applause.lang.applauseDsl.impl; import java.util.Collection; import org.applause.lang.applauseDsl.ApplauseDslPackage; import org.applause.lang.applauseDsl.ScalarExpression; import org.applause.lang.applauseDsl.SectionedView; import org.applause.lang.applauseDsl.ViewSection; 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>Sectioned View</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.applause.lang.applauseDsl.impl.SectionedViewImpl#getTitle <em>Title</em>}</li> * <li>{@link org.applause.lang.applauseDsl.impl.SectionedViewImpl#getSections <em>Sections</em>}</li> * </ul> * </p> * * @generated */ public class SectionedViewImpl extends ViewImpl implements SectionedView { /** * The cached value of the '{@link #getTitle() <em>Title</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTitle() * @generated * @ordered */ protected ScalarExpression title; /** * The cached value of the '{@link #getSections() <em>Sections</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSections() * @generated * @ordered */ protected EList<ViewSection> sections; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected SectionedViewImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ApplauseDslPackage.Literals.SECTIONED_VIEW; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ScalarExpression getTitle() { return title; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetTitle(ScalarExpression newTitle, NotificationChain msgs) { ScalarExpression oldTitle = title; title = newTitle; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ApplauseDslPackage.SECTIONED_VIEW__TITLE, oldTitle, newTitle); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTitle(ScalarExpression newTitle) { if (newTitle != title) { NotificationChain msgs = null; if (title != null) msgs = ((InternalEObject)title).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ApplauseDslPackage.SECTIONED_VIEW__TITLE, null, msgs); if (newTitle != null) msgs = ((InternalEObject)newTitle).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ApplauseDslPackage.SECTIONED_VIEW__TITLE, null, msgs); msgs = basicSetTitle(newTitle, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ApplauseDslPackage.SECTIONED_VIEW__TITLE, newTitle, newTitle)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<ViewSection> getSections() { if (sections == null) { sections = new EObjectContainmentEList<ViewSection>(ViewSection.class, this, ApplauseDslPackage.SECTIONED_VIEW__SECTIONS); } return sections; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ApplauseDslPackage.SECTIONED_VIEW__TITLE: return basicSetTitle(null, msgs); case ApplauseDslPackage.SECTIONED_VIEW__SECTIONS: return ((InternalEList<?>)getSections()).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 ApplauseDslPackage.SECTIONED_VIEW__TITLE: return getTitle(); case ApplauseDslPackage.SECTIONED_VIEW__SECTIONS: return getSections(); } 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 ApplauseDslPackage.SECTIONED_VIEW__TITLE: setTitle((ScalarExpression)newValue); return; case ApplauseDslPackage.SECTIONED_VIEW__SECTIONS: getSections().clear(); getSections().addAll((Collection<? extends ViewSection>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ApplauseDslPackage.SECTIONED_VIEW__TITLE: setTitle((ScalarExpression)null); return; case ApplauseDslPackage.SECTIONED_VIEW__SECTIONS: getSections().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ApplauseDslPackage.SECTIONED_VIEW__TITLE: return title != null; case ApplauseDslPackage.SECTIONED_VIEW__SECTIONS: return sections != null && !sections.isEmpty(); } return super.eIsSet(featureID); } } //SectionedViewImpl