Package org.openhab.binding.dscalarm.internal.model

Examples of org.openhab.binding.dscalarm.internal.model.Partition


            panel.refreshItem(item, config, eventPublisher);
          }
          break;
        case PARTITION:
          partitionId = config.getPartitionId();
          Partition partition = partitionMap.get(partitionId);
          if(partition == null) {
            partition = new Partition(partitionId);
            partitionMap.put(partitionId, partition);
          }
         
          if(event != null) {
            partition.handleEvent(item, config, eventPublisher, event);
          }
          else {
            partition.refreshItem(item, config, eventPublisher);
          }
          break;
        case ZONE:
          partitionId = config.getPartitionId();
          zoneId = config.getZoneId();
View Full Code Here


          if(panel != null)
            panel.updateProperties(item, config, state, description);
          break;
        case PARTITION:
          partitionId = config.getPartitionId();
          Partition partition = partitionMap.get(partitionId);
          if(partition != null)
            partition.updateProperties(item, config, state, description);
          break;
        case ZONE:
          partitionId = config.getPartitionId();
          zoneId = config.getZoneId();
          Zone zone = zoneMap.get(zoneId);
View Full Code Here

TOP

Related Classes of org.openhab.binding.dscalarm.internal.model.Partition

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.