Examples of switchOff()


Examples of org.jitterbit.integration.client.project.ProjectEventLogger.switchOff()

        postMessage(PackageResources.ProjectEventLogSwitch.ON, window);
    }

    private void switchOff(ApplicationWindow window) {
        ProjectEventLogger logger = projectManager.getProjectEventLogger();
        logger.switchOff();
        postMessage(PackageResources.ProjectEventLogSwitch.OFF, window);
    }

    @Override
    public String getId() {
View Full Code Here

Examples of org.openhab.binding.plcbus.internal.protocol.IPLCBusController.switchOff()

    IPLCBusController controller = PLCBusController.create(serialPortGateway);
    if (command == OnOffType.ON) {
      controller.switchOn(config.getUnit());
    } else if (command == OnOffType.OFF) {
      controller.switchOff(config.getUnit());
    } else if (command == IncreaseDecreaseType.INCREASE) {
      controller.bright(config.getUnit(), config.getSeconds());
    } else if (command == IncreaseDecreaseType.DECREASE) {
      controller.dim(config.getUnit(), config.getSeconds());
    } else if (command == StopMoveType.STOP) {
View Full Code Here

Examples of org.openhab.binding.plcbus.internal.protocol.IPLCBusController.switchOff()

    } else if (command == StopMoveType.STOP) {
      controller.fadeStop(config.getUnit());
    } else if (command == UpDownType.UP) {
      controller.switchOn(config.getUnit());
    } else if (command == UpDownType.DOWN) {
      controller.switchOff(config.getUnit());
    }
  }

  /**
   * {@inheritDoc}
 
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.