Package org.openhab.core.items

Examples of org.openhab.core.items.GenericItem.initialize()


  private boolean initializeItem(Item item) {
    if(isValidItemName(item.getName())) {
      if(item instanceof GenericItem) {
        GenericItem genericItem = (GenericItem) item;
        genericItem.setEventPublisher(eventPublisher);
        genericItem.initialize();
      }
     
      if(item instanceof GroupItem) {
        // fill group with its members
        for(Item i : getItems()) {
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.