Examples of TFObjectTemperatureConfiguration


Examples of org.openhab.binding.tinkerforge.internal.model.TFObjectTemperatureConfiguration

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetTfConfig(TFObjectTemperatureConfiguration newTfConfig, NotificationChain msgs)
  {
    TFObjectTemperatureConfiguration oldTfConfig = tfConfig;
    tfConfig = newTfConfig;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ModelPackage.OBJECT_TEMPERATURE__TF_CONFIG, oldTfConfig, newTfConfig);
      if (msgs == null) msgs = notification; else msgs.add(notification);
View Full Code Here

Examples of org.openhab.binding.tinkerforge.internal.model.TFObjectTemperatureConfiguration

      ohtfDevice.setTfConfig(configuration);
      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.object_temperature.name())) {
      logger.debug("{} setting TFObjectTemperatureConfiguration device_type {}",
          LoggerConstants.CONFIG, deviceType);
      TFObjectTemperatureConfiguration configuration =
          modelFactory.createTFObjectTemperatureConfiguration();
      OHTFDevice<TFObjectTemperatureConfiguration, TemperatureIRSubIds> ohtfDevice =
          modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(TemperatureIRSubIds.values()));
      ohtfDevice.setTfConfig(configuration);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.