Example #1
0
 def configure(self,config):
     ChangedPointGroup.configure(self,config)
     set_attribute(self,'type','',config)
     set_attribute(self,'address',REQUIRED,config,int)
     for point in self.points:
         self.meta['types'].append(point['type'])
     return
Example #2
0
 def configure(self, config):
     ChangedPointGroup.configure(self, config)
     set_attribute(self, 'type', '', config)
     set_attribute(self, 'address', REQUIRED, config, int)
     for point in self.points:
         self.meta['types'].append(point['type'])
     return
Example #3
0
 def configuration(self):
     config = ChangedPointGroup.configuration(self)
     get_attribute(self,'type',config)
     get_attribute(self,'address',config,str)
     return config
Example #4
0
 def __init__(self):
     ChangedPointGroup.__init__(self)
     self.meta['types'] = []
Example #5
0
 def configuration(self):
     config = ChangedPointGroup.configuration(self)
     get_attribute(self, 'type', config)
     get_attribute(self, 'address', config, str)
     return config
Example #6
0
 def __init__(self):
     ChangedPointGroup.__init__(self)
     self.meta['types'] = []