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

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


        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case ModelPackage.DIGITAL_ACTOR:
      {
        DigitalActor digitalActor = (DigitalActor)theEObject;
        T result = caseDigitalActor(digitalActor);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case ModelPackage.NUMBER_ACTOR:
View Full Code Here


      int featureID = notification.getFeatureID(MSwitchActor.class);
      if (featureID == ModelPackage.MSWITCH_ACTOR__SWITCH_STATE) {
        processValue((MBaseDevice) switchActor, notification);
      }
    } else if (notification.getNotifier() instanceof DigitalActor) {
      DigitalActor actor = (DigitalActor) notification.getNotifier();
      int featureID = notification.getFeatureID(DigitalActor.class);
      if (featureID == ModelPackage.DIGITAL_ACTOR__DIGITAL_STATE) {
        processValue((MBaseDevice) actor, notification);
      }
    } else {
View Full Code Here

TOP

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

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.