/** * Copyright (c) 2013 committers of YAKINDU 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: * committers of YAKINDU - initial API and implementation * */ package org.yakindu.sct.simulation.core.sruntime.impl; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.yakindu.base.base.impl.NamedElementImpl; import org.yakindu.base.types.Type; import org.yakindu.sct.simulation.core.sruntime.ExecutionSlot; import org.yakindu.sct.simulation.core.sruntime.SRuntimePackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Execution Slot</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.yakindu.sct.simulation.core.sruntime.impl.ExecutionSlotImpl#getValue <em>Value</em>}</li> * <li>{@link org.yakindu.sct.simulation.core.sruntime.impl.ExecutionSlotImpl#getFqName <em>Fq Name</em>}</li> * <li>{@link org.yakindu.sct.simulation.core.sruntime.impl.ExecutionSlotImpl#isWritable <em>Writable</em>}</li> * <li>{@link org.yakindu.sct.simulation.core.sruntime.impl.ExecutionSlotImpl#getType <em>Type</em>}</li> * </ul> * * @generated */ public abstract class ExecutionSlotImpl extends NamedElementImpl implements ExecutionSlot { /** * The default value of the '{@link #getValue() <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValue() * @generated * @ordered */ protected static final Object VALUE_EDEFAULT = null; /** * The cached value of the '{@link #getValue() <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getValue() * @generated * @ordered */ protected Object value = VALUE_EDEFAULT; /** * The default value of the '{@link #getFqName() <em>Fq Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFqName() * @generated * @ordered */ protected static final String FQ_NAME_EDEFAULT = null; /** * The cached value of the '{@link #getFqName() <em>Fq Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getFqName() * @generated * @ordered */ protected String fqName = FQ_NAME_EDEFAULT; /** * The default value of the '{@link #isWritable() <em>Writable</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isWritable() * @generated * @ordered */ protected static final boolean WRITABLE_EDEFAULT = true; /** * The cached value of the '{@link #isWritable() <em>Writable</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isWritable() * @generated * @ordered */ protected boolean writable = WRITABLE_EDEFAULT; /** * The cached value of the '{@link #getType() <em>Type</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected Type type; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ExecutionSlotImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SRuntimePackage.Literals.EXECUTION_SLOT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Type getType() { if (type != null && type.eIsProxy()) { InternalEObject oldType = (InternalEObject)type; type = (Type)eResolveProxy(oldType); if (type != oldType) { if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.RESOLVE, SRuntimePackage.EXECUTION_SLOT__TYPE, oldType, type)); } } return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Type basicGetType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(Type newType) { Type oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SRuntimePackage.EXECUTION_SLOT__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public Object getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setValue(Object newValue) { Object oldValue = value; value = newValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SRuntimePackage.EXECUTION_SLOT__VALUE, oldValue, value)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getFqName() { return fqName; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setFqName(String newFqName) { String oldFqName = fqName; fqName = newFqName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SRuntimePackage.EXECUTION_SLOT__FQ_NAME, oldFqName, fqName)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isWritable() { return writable; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setWritable(boolean newWritable) { boolean oldWritable = writable; writable = newWritable; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, SRuntimePackage.EXECUTION_SLOT__WRITABLE, oldWritable, writable)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SRuntimePackage.EXECUTION_SLOT__VALUE: return getValue(); case SRuntimePackage.EXECUTION_SLOT__FQ_NAME: return getFqName(); case SRuntimePackage.EXECUTION_SLOT__WRITABLE: return isWritable(); case SRuntimePackage.EXECUTION_SLOT__TYPE: if (resolve) return getType(); return basicGetType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case SRuntimePackage.EXECUTION_SLOT__VALUE: setValue(newValue); return; case SRuntimePackage.EXECUTION_SLOT__FQ_NAME: setFqName((String)newValue); return; case SRuntimePackage.EXECUTION_SLOT__WRITABLE: setWritable((Boolean)newValue); return; case SRuntimePackage.EXECUTION_SLOT__TYPE: setType((Type)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SRuntimePackage.EXECUTION_SLOT__VALUE: setValue(VALUE_EDEFAULT); return; case SRuntimePackage.EXECUTION_SLOT__FQ_NAME: setFqName(FQ_NAME_EDEFAULT); return; case SRuntimePackage.EXECUTION_SLOT__WRITABLE: setWritable(WRITABLE_EDEFAULT); return; case SRuntimePackage.EXECUTION_SLOT__TYPE: setType((Type)null); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SRuntimePackage.EXECUTION_SLOT__VALUE: return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value); case SRuntimePackage.EXECUTION_SLOT__FQ_NAME: return FQ_NAME_EDEFAULT == null ? fqName != null : !FQ_NAME_EDEFAULT.equals(fqName); case SRuntimePackage.EXECUTION_SLOT__WRITABLE: return writable != WRITABLE_EDEFAULT; case SRuntimePackage.EXECUTION_SLOT__TYPE: return type != null; } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated NOT */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(fqName != null ? fqName : ""); return result.toString(); } } //ExecutionSlotImpl