/** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. */ package org.sintef.thingml.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.sintef.thingml.Expression; import org.sintef.thingml.LocalVariable; import org.sintef.thingml.ThingmlPackage; import org.sintef.thingml.*; import org.sintef.thingml.constraints.ThingMLHelpers; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Local Variable</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.sintef.thingml.impl.LocalVariableImpl#getInit <em>Init</em>}</li> * <li>{@link org.sintef.thingml.impl.LocalVariableImpl#isChangeable <em>Changeable</em>}</li> * </ul> * * @generated */ public class LocalVariableImpl extends VariableImpl implements LocalVariable { /** * The cached value of the '{@link #getInit() <em>Init</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getInit() * @generated * @ordered */ protected Expression init; /** * The default value of the '{@link #isChangeable() <em>Changeable</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isChangeable() * @generated * @ordered */ protected static final boolean CHANGEABLE_EDEFAULT = true; /** * The cached value of the '{@link #isChangeable() <em>Changeable</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isChangeable() * @generated * @ordered */ protected boolean changeable = CHANGEABLE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected LocalVariableImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return ThingmlPackage.Literals.LOCAL_VARIABLE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Expression getInit() { return init; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public NotificationChain basicSetInit(Expression newInit, NotificationChain msgs) { Expression oldInit = init; init = newInit; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ThingmlPackage.LOCAL_VARIABLE__INIT, oldInit, newInit); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setInit(Expression newInit) { if (newInit != init) { NotificationChain msgs = null; if (init != null) msgs = ((InternalEObject)init).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ThingmlPackage.LOCAL_VARIABLE__INIT, null, msgs); if (newInit != null) msgs = ((InternalEObject)newInit).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ThingmlPackage.LOCAL_VARIABLE__INIT, null, msgs); msgs = basicSetInit(newInit, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ThingmlPackage.LOCAL_VARIABLE__INIT, newInit, newInit)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isChangeable() { return changeable; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setChangeable(boolean newChangeable) { boolean oldChangeable = changeable; changeable = newChangeable; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ThingmlPackage.LOCAL_VARIABLE__CHANGEABLE, oldChangeable, changeable)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ThingmlPackage.LOCAL_VARIABLE__INIT: return basicSetInit(null, 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 ThingmlPackage.LOCAL_VARIABLE__INIT: return getInit(); case ThingmlPackage.LOCAL_VARIABLE__CHANGEABLE: return isChangeable(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ThingmlPackage.LOCAL_VARIABLE__INIT: setInit((Expression)newValue); return; case ThingmlPackage.LOCAL_VARIABLE__CHANGEABLE: setChangeable((Boolean)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ThingmlPackage.LOCAL_VARIABLE__INIT: setInit((Expression)null); return; case ThingmlPackage.LOCAL_VARIABLE__CHANGEABLE: setChangeable(CHANGEABLE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ThingmlPackage.LOCAL_VARIABLE__INIT: return init != null; case ThingmlPackage.LOCAL_VARIABLE__CHANGEABLE: return changeable != CHANGEABLE_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(" (changeable: "); result.append(changeable); result.append(')'); return result.toString(); } } //LocalVariableImpl