Package org.openhab.model.items

Examples of org.openhab.model.items.ModelItem


  public void unsetModelRepository(ModelRepository modelRepository) {
    this.modelRepository = null;
  }

  public String getIcon(String itemName) {
    ModelItem item = getItem(itemName);
    return item != null ? item.getIcon() : null;
  }
View Full Code Here


    ModelItem item = getItem(itemName);
    return item != null ? item.getIcon() : null;
  }

  public String getLabel(String itemName) {
    ModelItem item = getItem(itemName);
    return item != null ? item.getLabel() : null;
  }
View Full Code Here

TOP

Related Classes of org.openhab.model.items.ModelItem

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.