ConfigTreeNode.py
changeset 2579 8fb5c6eddc72
parent 2552 46a1e8d1e92c
child 2620 063391cd313d
equal deleted inserted replaced
2578:eed31489c909 2579:8fb5c6eddc72
   125 
   125 
   126     def CTNSearch(self, criteria):
   126     def CTNSearch(self, criteria):
   127         # TODO match config's fields name and fields contents
   127         # TODO match config's fields name and fields contents
   128         return reduce(add, [
   128         return reduce(add, [
   129             CTNChild.CTNSearch(criteria)
   129             CTNChild.CTNSearch(criteria)
   130             for CTNChild in self.IterChildren()],[])
   130             for CTNChild in self.IterChildren()], [])
   131 
   131 
   132     def GetIconName(self):
   132     def GetIconName(self):
   133         return None
   133         return None
   134 
   134 
   135     def CTNTestModified(self):
   135     def CTNTestModified(self):