/** * Copyright (c) 2010-2016 by the respective copyright holders. * * 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 */ /** */ package org.openhab.binding.tinkerforge.internal.model.impl; import java.awt.Color; import java.lang.reflect.InvocationTargetException; import java.util.concurrent.atomic.AtomicBoolean; 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.MinimalEObjectImpl; import org.eclipse.emf.ecore.util.EcoreUtil; import org.openhab.binding.tinkerforge.internal.TinkerforgeErrorHandler; import org.openhab.binding.tinkerforge.internal.model.CallbackListener; import org.openhab.binding.tinkerforge.internal.model.ColorColor; import org.openhab.binding.tinkerforge.internal.model.MBrickletColor; import org.openhab.binding.tinkerforge.internal.model.MSensor; import org.openhab.binding.tinkerforge.internal.model.MSubDeviceHolder; import org.openhab.binding.tinkerforge.internal.model.MTFConfigConsumer; import org.openhab.binding.tinkerforge.internal.model.ModelPackage; import org.openhab.binding.tinkerforge.internal.model.TFBaseConfiguration; import org.openhab.binding.tinkerforge.internal.types.HSBValue; import org.openhab.core.library.types.HSBType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.tinkerforge.BrickletColor; import com.tinkerforge.NotConnectedException; import com.tinkerforge.TimeoutException; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Color Color</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getLogger <em>Logger</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getUid <em>Uid</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#isPoll <em>Poll</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getEnabledA <em>Enabled A</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getSubId <em>Sub Id</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getMbrick <em>Mbrick</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getSensorValue <em>Sensor Value</em>} * </li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getTfConfig <em>Tf Config</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getCallbackPeriod <em>Callback * Period</em>}</li> * <li>{@link org.openhab.binding.tinkerforge.internal.model.impl.ColorColorImpl#getDeviceType <em>Device Type</em>} * </li> * </ul> * * @generated */ public class ColorColorImpl extends MinimalEObjectImpl.Container implements ColorColor { /** * The default value of the '{@link #getLogger() <em>Logger</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getLogger() * @generated * @ordered */ protected static final Logger LOGGER_EDEFAULT = null; /** * The cached value of the '{@link #getLogger() <em>Logger</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getLogger() * @generated * @ordered */ protected Logger logger = LOGGER_EDEFAULT; /** * The default value of the '{@link #getUid() <em>Uid</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getUid() * @generated * @ordered */ protected static final String UID_EDEFAULT = null; /** * The cached value of the '{@link #getUid() <em>Uid</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getUid() * @generated * @ordered */ protected String uid = UID_EDEFAULT; /** * The default value of the '{@link #isPoll() <em>Poll</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #isPoll() * @generated * @ordered */ protected static final boolean POLL_EDEFAULT = true; /** * The cached value of the '{@link #isPoll() <em>Poll</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #isPoll() * @generated * @ordered */ protected boolean poll = POLL_EDEFAULT; /** * The default value of the '{@link #getEnabledA() <em>Enabled A</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getEnabledA() * @generated * @ordered */ protected static final AtomicBoolean ENABLED_A_EDEFAULT = null; /** * The cached value of the '{@link #getEnabledA() <em>Enabled A</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getEnabledA() * @generated * @ordered */ protected AtomicBoolean enabledA = ENABLED_A_EDEFAULT; /** * The default value of the '{@link #getSubId() <em>Sub Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getSubId() * @generated * @ordered */ protected static final String SUB_ID_EDEFAULT = null; /** * The cached value of the '{@link #getSubId() <em>Sub Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getSubId() * @generated * @ordered */ protected String subId = SUB_ID_EDEFAULT; /** * The cached value of the '{@link #getSensorValue() <em>Sensor Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getSensorValue() * @generated * @ordered */ protected HSBValue sensorValue; /** * The cached value of the '{@link #getTfConfig() <em>Tf Config</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getTfConfig() * @generated * @ordered */ protected TFBaseConfiguration tfConfig; /** * The default value of the '{@link #getCallbackPeriod() <em>Callback Period</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getCallbackPeriod() * @generated * @ordered */ protected static final long CALLBACK_PERIOD_EDEFAULT = 1000L; /** * The cached value of the '{@link #getCallbackPeriod() <em>Callback Period</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getCallbackPeriod() * @generated * @ordered */ protected long callbackPeriod = CALLBACK_PERIOD_EDEFAULT; /** * The default value of the '{@link #getDeviceType() <em>Device Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getDeviceType() * @generated * @ordered */ protected static final String DEVICE_TYPE_EDEFAULT = "color_color"; /** * The cached value of the '{@link #getDeviceType() <em>Device Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @see #getDeviceType() * @generated * @ordered */ protected String deviceType = DEVICE_TYPE_EDEFAULT; private BrickletColor tinkerforgeDevice; private ColorListener listener; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ protected ColorColorImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override protected EClass eStaticClass() { return ModelPackage.Literals.COLOR_COLOR; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public Logger getLogger() { return logger; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setLogger(Logger newLogger) { Logger oldLogger = logger; logger = newLogger; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__LOGGER, oldLogger, logger)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public String getUid() { return uid; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setUid(String newUid) { String oldUid = uid; uid = newUid; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__UID, oldUid, uid)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public boolean isPoll() { return poll; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setPoll(boolean newPoll) { boolean oldPoll = poll; poll = newPoll; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__POLL, oldPoll, poll)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public AtomicBoolean getEnabledA() { return enabledA; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setEnabledA(AtomicBoolean newEnabledA) { AtomicBoolean oldEnabledA = enabledA; enabledA = newEnabledA; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__ENABLED_A, oldEnabledA, enabledA)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public String getSubId() { return subId; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setSubId(String newSubId) { String oldSubId = subId; subId = newSubId; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__SUB_ID, oldSubId, subId)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public MBrickletColor getMbrick() { if (eContainerFeatureID() != ModelPackage.COLOR_COLOR__MBRICK) return null; return (MBrickletColor) eContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public MBrickletColor basicGetMbrick() { if (eContainerFeatureID() != ModelPackage.COLOR_COLOR__MBRICK) return null; return (MBrickletColor) eInternalContainer(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public NotificationChain basicSetMbrick(MBrickletColor newMbrick, NotificationChain msgs) { msgs = eBasicSetContainer((InternalEObject) newMbrick, ModelPackage.COLOR_COLOR__MBRICK, msgs); return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setMbrick(MBrickletColor newMbrick) { if (newMbrick != eInternalContainer() || (eContainerFeatureID() != ModelPackage.COLOR_COLOR__MBRICK && newMbrick != null)) { if (EcoreUtil.isAncestor(this, newMbrick)) throw new IllegalArgumentException("Recursive containment not allowed for " + toString()); NotificationChain msgs = null; if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); if (newMbrick != null) msgs = ((InternalEObject) newMbrick).eInverseAdd(this, ModelPackage.MSUB_DEVICE_HOLDER__MSUBDEVICES, MSubDeviceHolder.class, msgs); msgs = basicSetMbrick(newMbrick, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__MBRICK, newMbrick, newMbrick)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public HSBValue getSensorValue() { return sensorValue; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setSensorValue(HSBValue newSensorValue) { HSBValue oldSensorValue = sensorValue; sensorValue = newSensorValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__SENSOR_VALUE, oldSensorValue, sensorValue)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public TFBaseConfiguration getTfConfig() { return tfConfig; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public NotificationChain basicSetTfConfig(TFBaseConfiguration newTfConfig, NotificationChain msgs) { TFBaseConfiguration oldTfConfig = tfConfig; tfConfig = newTfConfig; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__TF_CONFIG, oldTfConfig, newTfConfig); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setTfConfig(TFBaseConfiguration newTfConfig) { if (newTfConfig != tfConfig) { NotificationChain msgs = null; if (tfConfig != null) msgs = ((InternalEObject) tfConfig).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ModelPackage.COLOR_COLOR__TF_CONFIG, null, msgs); if (newTfConfig != null) msgs = ((InternalEObject) newTfConfig).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ModelPackage.COLOR_COLOR__TF_CONFIG, null, msgs); msgs = basicSetTfConfig(newTfConfig, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__TF_CONFIG, newTfConfig, newTfConfig)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public long getCallbackPeriod() { return callbackPeriod; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void setCallbackPeriod(long newCallbackPeriod) { long oldCallbackPeriod = callbackPeriod; callbackPeriod = newCallbackPeriod; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ModelPackage.COLOR_COLOR__CALLBACK_PERIOD, oldCallbackPeriod, callbackPeriod)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public String getDeviceType() { return deviceType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated NOT */ @Override public void fetchSensorValue() { try { com.tinkerforge.BrickletColor.Color color = tinkerforgeDevice.getColor(); setSensorValue(new HSBValue( new HSBType(new Color(getRGBValue(color.r), getRGBValue(color.g), getRGBValue(color.b))))); } catch (TimeoutException e) { TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_TIMEOUT_EXCEPTION, e); } catch (NotConnectedException e) { TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_NOT_CONNECTION_EXCEPTION, e); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated NOT */ @Override public void init() { setEnabledA(new AtomicBoolean()); logger = LoggerFactory.getLogger(ColorColorImpl.class); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated NOT */ @Override public void enable() { if (tfConfig != null) { // threshold is not supported if (tfConfig.eIsSet(tfConfig.eClass().getEStructuralFeature("callbackPeriod"))) { setCallbackPeriod(tfConfig.getCallbackPeriod()); } } tinkerforgeDevice = getMbrick().getTinkerforgeDevice(); try { tinkerforgeDevice.setColorCallbackPeriod(getCallbackPeriod()); listener = new ColorListener(); tinkerforgeDevice.addColorListener(listener); fetchSensorValue(); } catch (TimeoutException e) { TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_TIMEOUT_EXCEPTION, e); } catch (NotConnectedException e) { TinkerforgeErrorHandler.handleError(this, TinkerforgeErrorHandler.TF_NOT_CONNECTION_EXCEPTION, e); } } private class ColorListener implements BrickletColor.ColorListener { @Override public void color(int r, int g, int b, int c) { // threshold is not supported logger.debug("========*** color r {} b {} g {}", getRGBValue(r), getRGBValue(g), getRGBValue(b)); setSensorValue(new HSBValue(new HSBType(new Color(getRGBValue(r), getRGBValue(g), getRGBValue(b))))); } } private int getRGBValue(int value) { return value * 255 / 0xFFFF; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated NOT */ @Override public void disable() { if (listener != null) { tinkerforgeDevice.removeColorListener(listener); } tinkerforgeDevice = null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ModelPackage.COLOR_COLOR__MBRICK: if (eInternalContainer() != null) msgs = eBasicRemoveFromContainer(msgs); return basicSetMbrick((MBrickletColor) otherEnd, msgs); } return super.eInverseAdd(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case ModelPackage.COLOR_COLOR__MBRICK: return basicSetMbrick(null, msgs); case ModelPackage.COLOR_COLOR__TF_CONFIG: return basicSetTfConfig(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) { switch (eContainerFeatureID()) { case ModelPackage.COLOR_COLOR__MBRICK: return eInternalContainer().eInverseRemove(this, ModelPackage.MSUB_DEVICE_HOLDER__MSUBDEVICES, MSubDeviceHolder.class, msgs); } return super.eBasicRemoveFromContainerFeature(msgs); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ModelPackage.COLOR_COLOR__LOGGER: return getLogger(); case ModelPackage.COLOR_COLOR__UID: return getUid(); case ModelPackage.COLOR_COLOR__POLL: return isPoll(); case ModelPackage.COLOR_COLOR__ENABLED_A: return getEnabledA(); case ModelPackage.COLOR_COLOR__SUB_ID: return getSubId(); case ModelPackage.COLOR_COLOR__MBRICK: if (resolve) return getMbrick(); return basicGetMbrick(); case ModelPackage.COLOR_COLOR__SENSOR_VALUE: return getSensorValue(); case ModelPackage.COLOR_COLOR__TF_CONFIG: return getTfConfig(); case ModelPackage.COLOR_COLOR__CALLBACK_PERIOD: return getCallbackPeriod(); case ModelPackage.COLOR_COLOR__DEVICE_TYPE: return getDeviceType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ModelPackage.COLOR_COLOR__LOGGER: setLogger((Logger) newValue); return; case ModelPackage.COLOR_COLOR__UID: setUid((String) newValue); return; case ModelPackage.COLOR_COLOR__POLL: setPoll((Boolean) newValue); return; case ModelPackage.COLOR_COLOR__ENABLED_A: setEnabledA((AtomicBoolean) newValue); return; case ModelPackage.COLOR_COLOR__SUB_ID: setSubId((String) newValue); return; case ModelPackage.COLOR_COLOR__MBRICK: setMbrick((MBrickletColor) newValue); return; case ModelPackage.COLOR_COLOR__SENSOR_VALUE: setSensorValue((HSBValue) newValue); return; case ModelPackage.COLOR_COLOR__TF_CONFIG: setTfConfig((TFBaseConfiguration) newValue); return; case ModelPackage.COLOR_COLOR__CALLBACK_PERIOD: setCallbackPeriod((Long) newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ModelPackage.COLOR_COLOR__LOGGER: setLogger(LOGGER_EDEFAULT); return; case ModelPackage.COLOR_COLOR__UID: setUid(UID_EDEFAULT); return; case ModelPackage.COLOR_COLOR__POLL: setPoll(POLL_EDEFAULT); return; case ModelPackage.COLOR_COLOR__ENABLED_A: setEnabledA(ENABLED_A_EDEFAULT); return; case ModelPackage.COLOR_COLOR__SUB_ID: setSubId(SUB_ID_EDEFAULT); return; case ModelPackage.COLOR_COLOR__MBRICK: setMbrick((MBrickletColor) null); return; case ModelPackage.COLOR_COLOR__SENSOR_VALUE: setSensorValue((HSBValue) null); return; case ModelPackage.COLOR_COLOR__TF_CONFIG: setTfConfig((TFBaseConfiguration) null); return; case ModelPackage.COLOR_COLOR__CALLBACK_PERIOD: setCallbackPeriod(CALLBACK_PERIOD_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ModelPackage.COLOR_COLOR__LOGGER: return LOGGER_EDEFAULT == null ? logger != null : !LOGGER_EDEFAULT.equals(logger); case ModelPackage.COLOR_COLOR__UID: return UID_EDEFAULT == null ? uid != null : !UID_EDEFAULT.equals(uid); case ModelPackage.COLOR_COLOR__POLL: return poll != POLL_EDEFAULT; case ModelPackage.COLOR_COLOR__ENABLED_A: return ENABLED_A_EDEFAULT == null ? enabledA != null : !ENABLED_A_EDEFAULT.equals(enabledA); case ModelPackage.COLOR_COLOR__SUB_ID: return SUB_ID_EDEFAULT == null ? subId != null : !SUB_ID_EDEFAULT.equals(subId); case ModelPackage.COLOR_COLOR__MBRICK: return basicGetMbrick() != null; case ModelPackage.COLOR_COLOR__SENSOR_VALUE: return sensorValue != null; case ModelPackage.COLOR_COLOR__TF_CONFIG: return tfConfig != null; case ModelPackage.COLOR_COLOR__CALLBACK_PERIOD: return callbackPeriod != CALLBACK_PERIOD_EDEFAULT; case ModelPackage.COLOR_COLOR__DEVICE_TYPE: return DEVICE_TYPE_EDEFAULT == null ? deviceType != null : !DEVICE_TYPE_EDEFAULT.equals(deviceType); } return super.eIsSet(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass) { if (baseClass == MSensor.class) { switch (derivedFeatureID) { case ModelPackage.COLOR_COLOR__SENSOR_VALUE: return ModelPackage.MSENSOR__SENSOR_VALUE; default: return -1; } } if (baseClass == MTFConfigConsumer.class) { switch (derivedFeatureID) { case ModelPackage.COLOR_COLOR__TF_CONFIG: return ModelPackage.MTF_CONFIG_CONSUMER__TF_CONFIG; default: return -1; } } if (baseClass == CallbackListener.class) { switch (derivedFeatureID) { case ModelPackage.COLOR_COLOR__CALLBACK_PERIOD: return ModelPackage.CALLBACK_LISTENER__CALLBACK_PERIOD; default: return -1; } } return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public int eDerivedStructuralFeatureID(int baseFeatureID, Class<?> baseClass) { if (baseClass == MSensor.class) { switch (baseFeatureID) { case ModelPackage.MSENSOR__SENSOR_VALUE: return ModelPackage.COLOR_COLOR__SENSOR_VALUE; default: return -1; } } if (baseClass == MTFConfigConsumer.class) { switch (baseFeatureID) { case ModelPackage.MTF_CONFIG_CONSUMER__TF_CONFIG: return ModelPackage.COLOR_COLOR__TF_CONFIG; default: return -1; } } if (baseClass == CallbackListener.class) { switch (baseFeatureID) { case ModelPackage.CALLBACK_LISTENER__CALLBACK_PERIOD: return ModelPackage.COLOR_COLOR__CALLBACK_PERIOD; default: return -1; } } return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public int eDerivedOperationID(int baseOperationID, Class<?> baseClass) { if (baseClass == MSensor.class) { switch (baseOperationID) { case ModelPackage.MSENSOR___FETCH_SENSOR_VALUE: return ModelPackage.COLOR_COLOR___FETCH_SENSOR_VALUE; default: return -1; } } if (baseClass == MTFConfigConsumer.class) { switch (baseOperationID) { default: return -1; } } if (baseClass == CallbackListener.class) { switch (baseOperationID) { default: return -1; } } return super.eDerivedOperationID(baseOperationID, baseClass); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public Object eInvoke(int operationID, EList<?> arguments) throws InvocationTargetException { switch (operationID) { case ModelPackage.COLOR_COLOR___FETCH_SENSOR_VALUE: fetchSensorValue(); return null; case ModelPackage.COLOR_COLOR___INIT: init(); return null; case ModelPackage.COLOR_COLOR___ENABLE: enable(); return null; case ModelPackage.COLOR_COLOR___DISABLE: disable(); return null; } return super.eInvoke(operationID, arguments); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (logger: "); result.append(logger); result.append(", uid: "); result.append(uid); result.append(", poll: "); result.append(poll); result.append(", enabledA: "); result.append(enabledA); result.append(", subId: "); result.append(subId); result.append(", sensorValue: "); result.append(sensorValue); result.append(", callbackPeriod: "); result.append(callbackPeriod); result.append(", deviceType: "); result.append(deviceType); result.append(')'); return result.toString(); } } // ColorColorImpl