/** * <copyright> * </copyright> * */ package org.applause.lang.applauseDsl.impl; import java.util.Collection; import org.applause.lang.applauseDsl.ApplauseDslPackage; import org.applause.lang.applauseDsl.Application; import org.applause.lang.applauseDsl.TabbarButton; 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.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Application</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.applause.lang.applauseDsl.impl.ApplicationImpl#getName <em>Name</em>}</li> * <li>{@link org.applause.lang.applauseDsl.impl.ApplicationImpl#getSplash <em>Splash</em>}</li> * <li>{@link org.applause.lang.applauseDsl.impl.ApplicationImpl#getButtons <em>Buttons</em>}</li> * </ul> * </p> * * @generated */ public class ApplicationImpl extends MinimalEObjectImpl.Container implements Application { /** * 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 default value of the '{@link #getSplash() <em>Splash</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSplash() * @generated * @ordered */ protected static final String SPLASH_EDEFAULT = null; /** * The cached value of the '{@link #getSplash() <em>Splash</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getSplash() * @generated * @ordered */ protected String splash = SPLASH_EDEFAULT; /** * The cached value of the '{@link #getButtons() <em>Buttons</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getButtons() * @generated * @ordered */ protected EList<TabbarButton> buttons; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ApplicationImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ApplauseDslPackage.Literals.APPLICATION; } /** * <!-- 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, ApplauseDslPackage.APPLICATION__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getSplash() { return splash; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setSplash(String newSplash) { String oldSplash = splash; splash = newSplash; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ApplauseDslPackage.APPLICATION__SPLASH, oldSplash, splash)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<TabbarButton> getButtons() { if (buttons == null) { buttons = new EObjectContainmentEList<TabbarButton>(TabbarButton.class, this, ApplauseDslPackage.APPLICATION__BUTTONS); } return buttons; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ApplauseDslPackage.APPLICATION__BUTTONS: return ((InternalEList<?>)getButtons()).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.APPLICATION__NAME: return getName(); case ApplauseDslPackage.APPLICATION__SPLASH: return getSplash(); case ApplauseDslPackage.APPLICATION__BUTTONS: return getButtons(); } 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.APPLICATION__NAME: setName((String)newValue); return; case ApplauseDslPackage.APPLICATION__SPLASH: setSplash((String)newValue); return; case ApplauseDslPackage.APPLICATION__BUTTONS: getButtons().clear(); getButtons().addAll((Collection<? extends TabbarButton>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ApplauseDslPackage.APPLICATION__NAME: setName(NAME_EDEFAULT); return; case ApplauseDslPackage.APPLICATION__SPLASH: setSplash(SPLASH_EDEFAULT); return; case ApplauseDslPackage.APPLICATION__BUTTONS: getButtons().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ApplauseDslPackage.APPLICATION__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case ApplauseDslPackage.APPLICATION__SPLASH: return SPLASH_EDEFAULT == null ? splash != null : !SPLASH_EDEFAULT.equals(splash); case ApplauseDslPackage.APPLICATION__BUTTONS: return buttons != null && !buttons.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(", splash: "); result.append(splash); result.append(')'); return result.toString(); } } //ApplicationImpl