Examples of TFVoltageCurrentConfiguration


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

   * <!-- end-user-doc -->
   * @generated
   */
  public NotificationChain basicSetTfConfig(TFVoltageCurrentConfiguration newTfConfig, NotificationChain msgs)
  {
    TFVoltageCurrentConfiguration oldTfConfig = tfConfig;
    tfConfig = newTfConfig;
    if (eNotificationRequired())
    {
      ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ModelPackage.MBRICKLET_VOLTAGE_CURRENT__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.TFVoltageCurrentConfiguration

          modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(NoSubIds.values()));
      ohtfDevice.setTfConfig(configuration);
      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.bricklet_voltageCurrent.name())) {
      TFVoltageCurrentConfiguration configuration =
          modelFactory.createTFVoltageCurrentConfiguration();
      OHTFDevice<TFVoltageCurrentConfiguration, VoltageCurrentSubIds> ohtfDevice =
          modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(VoltageCurrentSubIds.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.