Examples of BrickletRemoteSwitchConfiguration


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

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

      ohtfDevice.setTfConfig(tfInterruptListenerConfiguration);
      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.bricklet_remote_switch.name())) {
      logger.debug("{} setting BrickletRemoteSwitchConfiguration device_type {}",
          LoggerConstants.CONFIG, deviceType);
      BrickletRemoteSwitchConfiguration configuration =
          modelFactory.createBrickletRemoteSwitchConfiguration();
      OHTFDevice<BrickletRemoteSwitchConfiguration, NoSubIds> ohtfDevice =
          modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(NoSubIds.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.