Package org.openhab.binding.tinkerforge.internal.model

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


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


      fillupConfig(ohtfDevice, deviceConfig);
    } else if (deviceType.equals(TypeKey.electrode.name())
        || deviceType.equals(TypeKey.proximity.name())) {
      logger.debug("{} setting MultiTouchDeviceConfiguration device_type {}",
          LoggerConstants.CONFIG, deviceType);
      MultiTouchDeviceConfiguration configuration =
          modelFactory.createMultiTouchDeviceConfiguration();
      OHTFDevice<MultiTouchDeviceConfiguration, MultiTouchSubIds> ohtfDevice =
          modelFactory.createOHTFDevice();
      ohtfDevice.getSubDeviceIds().addAll(Arrays.asList(MultiTouchSubIds.values()));
      ohtfDevice.setTfConfig(configuration);
View Full Code Here

TOP

Related Classes of org.openhab.binding.tinkerforge.internal.model.MultiTouchDeviceConfiguration

Copyright © 2018 www.massapicom. 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.