/******************************************************************************* * Copyright (c) 2008, 2011 Obeo. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.eef.mapping.filters.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.eef.mapping.filters.BindingFilter; import org.eclipse.emf.eef.mapping.filters.FiltersPackage; import org.eclipse.emf.eef.mapping.impl.DocumentedElementImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Binding Filter</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.emf.eef.mapping.filters.impl.BindingFilterImpl#getName <em>Name</em>}</li> * <li>{@link org.eclipse.emf.eef.mapping.filters.impl.BindingFilterImpl#isMandatory <em>Mandatory</em>}</li> * </ul> * </p> * * @generated */ public abstract class BindingFilterImpl extends DocumentedElementImpl implements BindingFilter { /** * 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 #isMandatory() <em>Mandatory</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isMandatory() * @generated * @ordered */ protected static final boolean MANDATORY_EDEFAULT = true; /** * The cached value of the '{@link #isMandatory() <em>Mandatory</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isMandatory() * @generated * @ordered */ protected boolean mandatory = MANDATORY_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected BindingFilterImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return FiltersPackage.Literals.BINDING_FILTER; } /** * <!-- 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, FiltersPackage.BINDING_FILTER__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isMandatory() { return mandatory; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setMandatory(boolean newMandatory) { boolean oldMandatory = mandatory; mandatory = newMandatory; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FiltersPackage.BINDING_FILTER__MANDATORY, oldMandatory, mandatory)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FiltersPackage.BINDING_FILTER__NAME: return getName(); case FiltersPackage.BINDING_FILTER__MANDATORY: return isMandatory(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FiltersPackage.BINDING_FILTER__NAME: setName((String) newValue); return; case FiltersPackage.BINDING_FILTER__MANDATORY: setMandatory((Boolean) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FiltersPackage.BINDING_FILTER__NAME: setName(NAME_EDEFAULT); return; case FiltersPackage.BINDING_FILTER__MANDATORY: setMandatory(MANDATORY_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FiltersPackage.BINDING_FILTER__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT .equals(name); case FiltersPackage.BINDING_FILTER__MANDATORY: return mandatory != MANDATORY_EDEFAULT; } 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(", mandatory: "); result.append(mandatory); result.append(')'); return result.toString(); } } //BindingFilterImpl