/** * <copyright> * </copyright> * * $Id$ */ package de.twenty11.skysail.ext.forms.impl; import de.twenty11.skysail.ext.forms.Field; import de.twenty11.skysail.ext.forms.Form; import de.twenty11.skysail.ext.forms.FormsPackage; 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.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Form</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link de.twenty11.skysail.ext.forms.impl.FormImpl#getName <em>Name</em>}</li> * <li>{@link de.twenty11.skysail.ext.forms.impl.FormImpl#getFields <em>Fields</em>}</li> * </ul> * </p> * * @generated */ public class FormImpl extends EObjectImpl implements Form { /** * 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 #getFields() <em>Fields</em>}' containment reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFields() * @generated * @ordered */ protected EList fields; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected FormImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected EClass eStaticClass() { return FormsPackage.Literals.FORM; } /** * <!-- 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, FormsPackage.FORM__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList getFields() { if (fields == null) { fields = new EObjectContainmentEList(Field.class, this, FormsPackage.FORM__FIELDS); } return fields; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case FormsPackage.FORM__FIELDS: return ((InternalEList)getFields()).basicRemove(otherEnd, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FormsPackage.FORM__NAME: return getName(); case FormsPackage.FORM__FIELDS: return getFields(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eSet(int featureID, Object newValue) { switch (featureID) { case FormsPackage.FORM__NAME: setName((String)newValue); return; case FormsPackage.FORM__FIELDS: getFields().clear(); getFields().addAll((Collection)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void eUnset(int featureID) { switch (featureID) { case FormsPackage.FORM__NAME: setName(NAME_EDEFAULT); return; case FormsPackage.FORM__FIELDS: getFields().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean eIsSet(int featureID) { switch (featureID) { case FormsPackage.FORM__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case FormsPackage.FORM__FIELDS: return fields != null && !fields.isEmpty(); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ 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(); } } //FormImpl