当前位置: 首页>>代码示例>>Python>>正文


Python TreeNode.add_child方法代码示例

本文整理汇总了Python中liblarch.TreeNode.add_child方法的典型用法代码示例。如果您正苦于以下问题:Python TreeNode.add_child方法的具体用法?Python TreeNode.add_child怎么用?Python TreeNode.add_child使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在liblarch.TreeNode的用法示例。


在下文中一共展示了TreeNode.add_child方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: add_child

# 需要导入模块: from liblarch import TreeNode [as 别名]
# 或者: from liblarch.TreeNode import add_child [as 别名]
    def add_child(self, tid):
        """Add a subtask to this task

        @param child: the added task
        """
        Log.debug("adding child %s to task %s" % (tid, self.get_id()))
        self.can_be_deleted = False
        # the core of the method is in the TreeNode object
        TreeNode.add_child(self, tid)
        # now we set inherited attributes only if it's a new task
        child = self.req.get_task(tid)
        if self.is_loaded() and child and child.can_be_deleted:
            child.set_start_date(self.get_start_date())
            child.set_due_date(self.get_due_date())
            for t in self.get_tags():
                child.add_tag(t.get_name())
        self.sync()
        return True
开发者ID:kunaaljain,项目名称:gtg,代码行数:20,代码来源:task.py

示例2: add_child

# 需要导入模块: from liblarch import TreeNode [as 别名]
# 或者: from liblarch.TreeNode import add_child [as 别名]
 def add_child(self, child_id):
     special_child = self.req.get_tag(child_id).is_special()
     if not self.is_special() and not special_child:
         TreeNode.add_child(self, child_id)
开发者ID:lefred,项目名称:backend_gtgonline,代码行数:6,代码来源:tag.py


注:本文中的liblarch.TreeNode.add_child方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。