本文整理汇总了Python中mpx.lib.node.CompositeNode.children_nodes方法的典型用法代码示例。如果您正苦于以下问题:Python CompositeNode.children_nodes方法的具体用法?Python CompositeNode.children_nodes怎么用?Python CompositeNode.children_nodes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mpx.lib.node.CompositeNode
的用法示例。
在下文中一共展示了CompositeNode.children_nodes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: children_nodes
# 需要导入模块: from mpx.lib.node import CompositeNode [as 别名]
# 或者: from mpx.lib.node.CompositeNode import children_nodes [as 别名]
def children_nodes(self):
children = CompositeNode.children_nodes(self)
stats = get_c_stat_names()
# remove all nodes that do not have a stat
nodeNameList = []
for c in children:
if c.name not in stats:
c.prune()
else:
nodeNameList.append( c.name)
# add all stats to node tree (unless already there)
for stat in stats:
if stat not in nodeNameList:
n = CStatNode(stat)
cd = { 'name' : stat,
'parent' : self,
'log_on_change': -1,
'time_last_changed': ''}
n.configure( cd)
return CompositeNode.children_nodes(self)
示例2: children_nodes
# 需要导入模块: from mpx.lib.node import CompositeNode [as 别名]
# 或者: from mpx.lib.node.CompositeNode import children_nodes [as 别名]
def children_nodes(self,**options):
nodes = CompositeNode.children_nodes(self, **options)
nodes.sort(lambda x,y: cmp(x.name, y.name))
return nodes
示例3: children_nodes
# 需要导入模块: from mpx.lib.node import CompositeNode [as 别名]
# 或者: from mpx.lib.node.CompositeNode import children_nodes [as 别名]
def children_nodes(self, **options):
return self._alias_root.children_nodes(**options) + \
CompositeNode.children_nodes(self, **options)