本文整理汇总了Python中link.Link.consolidateLink方法的典型用法代码示例。如果您正苦于以下问题:Python Link.consolidateLink方法的具体用法?Python Link.consolidateLink怎么用?Python Link.consolidateLink使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类link.Link
的用法示例。
在下文中一共展示了Link.consolidateLink方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: setClause
# 需要导入模块: from link import Link [as 别名]
# 或者: from link.Link import consolidateLink [as 别名]
def setClause(self):
title = unicode(self.ui.titleEdit.text())
parent = unicode(self.ui.parentBox.currentText())
self.clause = Clause()
self.clause.setTitle(title)
self.clause.setType(self.project.getTIM().getType(unicode(self.ui.typeBox.currentText())))
self.document = self.project.getDocument(unicode(self.ui.documentBox.currentText()))
self.document.addClause(self.clause)
if (parent != "Sem Clausula Pai") :
parentClause = self.clausesList[unicode(self.ui.parentBox.currentText())]
link = Link()
link.addChild(self.clause.getID())
link.addParent(parentClause)
link.consolidateLink(self.project)
self.openElementSignal.emit("clause:" + self.clause.getID())