Examples of TFIOActorConfiguration


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

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

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

        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case ModelPackage.TFIO_ACTOR_CONFIGURATION:
      {
        TFIOActorConfiguration tfioActorConfiguration = (TFIOActorConfiguration)theEObject;
        T result = caseTFIOActorConfiguration(tfioActorConfiguration);
        if (result == null) result = caseTFConfig(tfioActorConfiguration);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
View Full Code Here

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

      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(NoSubIds.values()));
      ohtfDevice.setTfConfig(tfBrickDCConfiguration);
      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.io_actuator.name())) {
      logger.debug("{} setting io_actuator config", LoggerConstants.CONFIG);
      TFIOActorConfiguration tfioActorConfiguration = modelFactory.createTFIOActorConfiguration();
      OHTFDevice<TFIOActorConfiguration, IO16SubIds> ohtfDevice = modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(IO16SubIds.values()));
      ohtfDevice.setTfConfig(tfioActorConfiguration);
      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.io4_actuator.name())) {
      logger.debug("{} setting io4_actuator config", LoggerConstants.CONFIG);
      TFIOActorConfiguration tfioActorConfiguration = modelFactory.createTFIOActorConfiguration();
      OHTFDevice<TFIOActorConfiguration, IO4SubIds> ohtfDevice = modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(IO4SubIds.values()));
      ohtfDevice.setTfConfig(tfioActorConfiguration);
      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.iosensor.name())) {
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.