Examples of MSwitchActor


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

        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case ModelPackage.MSWITCH_ACTOR:
      {
        MSwitchActor mSwitchActor = (MSwitchActor)theEObject;
        T result = caseMSwitchActor(mSwitchActor);
        if (result == null) result = defaultCase(theEObject);
        return result;
      }
      case ModelPackage.MOUT_SWITCH_ACTOR:
View Full Code Here

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

      int featureID = notification.getFeatureID(MSensor.class);
      if (featureID == ModelPackage.MSENSOR__SENSOR_VALUE) {
        processValue((MBaseDevice) sensor, notification);
      }
    } else if (notification.getNotifier() instanceof MSwitchActor) {
      MSwitchActor switchActor = (MSwitchActor) notification.getNotifier();
      int featureID = notification.getFeatureID(MSwitchActor.class);
      if (featureID == ModelPackage.MSWITCH_ACTOR__SWITCH_STATE) {
        processValue((MBaseDevice) switchActor, notification);
      }
    } else if (notification.getNotifier() instanceof DigitalActor) {
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.