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


Python MeiElement.children方法代码示例

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


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

示例1: test_flattenedtree

# 需要导入模块: from pymei import MeiElement [as 别名]
# 或者: from pymei.MeiElement import children [as 别名]
    def test_flattenedtree(self):
        mei = MeiElement("mei")
        mus = MeiElement("music")
        body = MeiElement("body")
        staff = MeiElement("staff")
        staff2 = MeiElement("staff")
        n1 = MeiElement("note")
        n2 = MeiElement("note")
        n3 = MeiElement("note")

        doc = MeiDocument()

        mei.addChild(mus)

        doc.root = mei

        mus.addChild(body)
        body.addChild(staff)
        body.addChild(staff2)
        staff.addChild(n1)
        staff.addChild(n2)
        staff2.addChild(n3)

        doc.lookBack(n2, "mei")
        self.assertEqual(8, len(doc.getFlattenedTree()))

        staff.removeChild(n2)
        self.assertEqual(7, len(doc.getFlattenedTree()))

        self.assertEqual(staff2, doc.getFlattenedTree()[5])

        staff.removeChildrenWithName("note")
        self.assertEqual(6, len(doc.getFlattenedTree()))

        body.deleteAllChildren()
        self.assertEqual(3, len(doc.getFlattenedTree()))

        children = MeiElementList()
        staff3 = MeiElement("staff")
        staff4 = MeiElement("staff")
        children.append(staff3)
        children.append(staff4)

        body.children = children

        self.assertEqual(5, len(doc.getFlattenedTree()))

        elements = [mei, mus, body, staff3, staff4]

        for i,el in enumerate(doc.getFlattenedTree()):
            self.assertEqual(elements[i], doc.getFlattenedTree()[i])
开发者ID:lpugin,项目名称:libmei,代码行数:53,代码来源:meidocument_test.py

示例2: test_getchildrenbyname

# 需要导入模块: from pymei import MeiElement [as 别名]
# 或者: from pymei.MeiElement import children [as 别名]
    def test_getchildrenbyname(self):
        p = MeiElement("note")
        el1 = MeiElement("accid")
        el2 = MeiElement("accid")
        el3 = MeiElement("dot")

        children = MeiElementList()
        children.append(el1)
        children.append(el2)
        children.append(el3)
        p.children = children

        # this should return a new list
        accid_children = p.getChildrenByName("accid")
        self.assertEqual(2, len(accid_children))
开发者ID:lpugin,项目名称:libmei,代码行数:17,代码来源:meielement_test.py

示例3: test_setchildren

# 需要导入模块: from pymei import MeiElement [as 别名]
# 或者: from pymei.MeiElement import children [as 别名]
    def test_setchildren(self):
        p = MeiElement("note")
        el1 = MeiElement("accid")
        el2 = MeiElement("dot")
        el3 = MeiElement("artic")

        p.addChild(el1)
        self.assertEqual(1, len(p.children))

        children = MeiElementList()
        children.append(el2)
        children.append(el3)

        p.children = children

        # setting the children will REPLACE any previously
        # set children!!!
        self.assertEqual(2, len(p.children))
        
        # can't affect children by changing the initial list
        children.append(MeiElement("accid"))
        self.assertEqual(2, len(p.children))
开发者ID:lpugin,项目名称:libmei,代码行数:24,代码来源:meielement_test.py


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