當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。