Package org.openhab.binding.nikobus.internal.config

Examples of org.openhab.binding.nikobus.internal.config.ModuleChannel


  private void parseChannelConfig(String name, String config, String address,
      int channel) throws BindingConfigParseException {

    Item item = new SwitchItem(name);
    provider.processBindingConfiguration("context", item, config);
    ModuleChannel c = (ModuleChannel) provider
        .getItemConfig(name);

    assertEquals(name, c.getName());
    assertEquals(address, c.getAddress());
  }
View Full Code Here

TOP

Related Classes of org.openhab.binding.nikobus.internal.config.ModuleChannel

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.