/******************************************************************************* * Copyright (c) 2014, 2015 Willink Transformations and others. * 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: * E.D.Willink - Initial API and implementation *******************************************************************************/ package org.eclipse.ocl.xtext.basecs.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.ocl.xtext.basecs.BaseCSPackage; import org.eclipse.ocl.xtext.basecs.MultiplicityCS; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Multiplicity CS</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.ocl.xtext.basecs.impl.MultiplicityCSImpl#isIsNullFree <em>Is Null Free</em>}</li> * </ul> * * @generated */ public abstract class MultiplicityCSImpl extends ElementCSImpl implements MultiplicityCS { /** * The default value of the '{@link #isIsNullFree() <em>Is Null Free</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isIsNullFree() * @generated * @ordered */ protected static final boolean IS_NULL_FREE_EDEFAULT = false; /** * The cached value of the '{@link #isIsNullFree() <em>Is Null Free</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isIsNullFree() * @generated * @ordered */ protected boolean isNullFree = IS_NULL_FREE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected MultiplicityCSImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return BaseCSPackage.Literals.MULTIPLICITY_CS; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean isIsNullFree() { return isNullFree; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void setIsNullFree(boolean newIsNullFree) { boolean oldIsNullFree = isNullFree; isNullFree = newIsNullFree; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, BaseCSPackage.MULTIPLICITY_CS__IS_NULL_FREE, oldIsNullFree, isNullFree)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public int getLower() { // TODO: implement this method // Ensure that you remove @generated or mark it @generated NOT throw new UnsupportedOperationException(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public int getUpper() { // TODO: implement this method // Ensure that you remove @generated or mark it @generated NOT throw new UnsupportedOperationException(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { return super.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case BaseCSPackage.MULTIPLICITY_CS__IS_NULL_FREE: return isIsNullFree(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case BaseCSPackage.MULTIPLICITY_CS__IS_NULL_FREE: setIsNullFree((Boolean)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case BaseCSPackage.MULTIPLICITY_CS__IS_NULL_FREE: setIsNullFree(IS_NULL_FREE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case BaseCSPackage.MULTIPLICITY_CS__IS_NULL_FREE: return isNullFree != IS_NULL_FREE_EDEFAULT; } return super.eIsSet(featureID); } } //MultiplicityCSImpl