Package net.homeip.mleclerc.omnilinkbbclient.stubs

Examples of net.homeip.mleclerc.omnilinkbbclient.stubs.HoldMode


    // Hold mode
    EnumLabel holdModeLabel = EnumLabel.getEnumLabel(HOLD_MODES, thermostatModel.getHoldMode());
    exec = new Execution() {
      public boolean execute(Object selection) {
        HoldMode selectedHoldMode = (HoldMode) ((EnumLabel) selection).getEnumValue();
        return thermostatModel.setHoldMode(selectedHoldMode);
      }
    };
    Field holdModeField = createLabelAndChoiceField(OmniLinkBBClient.getString(OmniLinkClientResource.TEMPERATURE_HOLD_MODE), HOLD_MODES, holdModeLabel, exec);
View Full Code Here

TOP

Related Classes of net.homeip.mleclerc.omnilinkbbclient.stubs.HoldMode

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.