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


Python IndexedContainer.addContainerProperty方法代码示例

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


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

示例1: testIndedexContainerItemIds

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
 def testIndedexContainerItemIds(self):
     ic = IndexedContainer()
     ic.addContainerProperty('prop1', str, None)
     idd = ic.addItem()
     ic.getItem(idd).getItemProperty('prop1').setValue('1')
     item2 = ic.addItem('item2')
     item2.getItemProperty('prop1').setValue('2')
     self.serializeAndDeserialize(ic)
开发者ID:Lemoncandy,项目名称:muntjac,代码行数:10,代码来源:TestSerialization.py

示例2: getLocaleContainer

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
 def getLocaleContainer(cls):
     localeContainer = IndexedContainer()
     localeContainer.addContainerProperty(cls.locale_PROPERTY_LOCALE, Locale, None)
     localeContainer.addContainerProperty(cls.locale_PROPERTY_NAME, str, None)
     for i in range(len(cls._locales)):
         idd = cls._locales[i][2]
         item = localeContainer.addItem(idd)
         v = Locale(cls._locales[i][0], cls._locales[i][1])
         item.getItemProperty(cls.locale_PROPERTY_LOCALE).setValue(v)
         v = cls._locales[i][2]
         item.getItemProperty(cls.locale_PROPERTY_NAME).setValue(v)
     return localeContainer
开发者ID:rwl,项目名称:muntjac,代码行数:14,代码来源:ExampleUtil.py

示例3: getResolutionContainer

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
    def getResolutionContainer(self):
        resolutionContainer = IndexedContainer()
        resolutionContainer.addContainerProperty(
                self.resolution_PROPERTY_NAME, str, None)

        for i, res in enumerate(self._resolutions):
            added = resolutionContainer.addItem(res)
            added.getItemProperty(
                    self.resolution_PROPERTY_NAME).setValue(
                            self._resolutionNames[i])

        return resolutionContainer
开发者ID:AvdN,项目名称:muntjac,代码行数:14,代码来源:DateResolutionExample.py

示例4: getNameContainer

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
 def getNameContainer(cls):
     contactContainer = IndexedContainer()
     contactContainer.addContainerProperty(cls.PERSON_PROPERTY_NAME, str, "")
     i = 0
     while i < 50:
         fn = cls._firstnames[int(random() * len(cls._firstnames))]
         ln = cls._lastnames[int(random() * len(cls._lastnames))]
         idd = fn + ln
         item = contactContainer.addItem(idd)
         if item is not None:
             i += 1
             v = fn + " " + ln
             item.getItemProperty(cls.PERSON_PROPERTY_NAME).setValue(v)
     return contactContainer
开发者ID:rwl,项目名称:muntjac,代码行数:16,代码来源:ExampleUtil.py

示例5: createContainer

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
    def createContainer(cls):
        """Creates a container with three properties "col1,col2,col3"
        with 100 items

        @return: Returns the created table
        """
        container = IndexedContainer()
        container.addContainerProperty('col1', str, '')
        container.addContainerProperty('col2', str, '')
        container.addContainerProperty('col3', str, '')

        for i in range(100):
            item = container.addItem('item %d' % i)
            item.getItemProperty('col1').setValue('first%d' % i)
            item.getItemProperty('col2').setValue('middle%d' % i)
            item.getItemProperty('col3').setValue('last%d' % i)

        return container
开发者ID:AvdN,项目名称:muntjac,代码行数:20,代码来源:test_footer.py

示例6: createDummyData

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
    def createDummyData(cls):
        fnames = ['Peter', 'Alice', 'Joshua', 'Mike', 'Olivia', 'Nina', 'Alex',
                'Rita', 'Dan', 'Umberto', 'Henrik', 'Rene', 'Lisa', 'Marge']
        lnames = ['Smith', 'Gordon', 'Simpson', 'Brown', 'Clavel', 'Simons',
                'Verne', 'Scott', 'Allison', 'Gates', 'Rowling', 'Barks',
                'Ross', 'Schneider', 'Tate']

        ic = IndexedContainer()

        for p in cls._fields:
            ic.addContainerProperty(p, str, '')

        for _ in range(1000):
            idd = ic.addItem()
            fname = fnames[int( len(fnames) * random() )]
            ic.getContainerProperty(idd, 'First Name').setValue(fname)
            lname = lnames[int( len(lnames) * random() )]
            ic.getContainerProperty(idd, 'Last Name').setValue(lname)

        return ic
开发者ID:AvdN,项目名称:muntjac,代码行数:22,代码来源:SimpleAddressBook.py

示例7: getOrderContainer

# 需要导入模块: from muntjac.data.util.indexed_container import IndexedContainer [as 别名]
# 或者: from muntjac.data.util.indexed_container.IndexedContainer import addContainerProperty [as 别名]
    def getOrderContainer(cls):
        container = IndexedContainer()

        # Create the container properties
        container.addContainerProperty(cls.ORDER_DESCRIPTION_PROPERTY_ID, str, "")
        container.addContainerProperty(cls.ORDER_QUANTITY_PROPERTY_ID, int, 0)
        container.addContainerProperty(cls.ORDER_UNITPRICE_PROPERTY_ID, str, "$0")
        container.addContainerProperty(cls.ORDER_ITEMPRICE_PROPERTY_ID, str, "$0")

        # Create some orders
        cls.addOrderToContainer(container, "Domain Name", 3, 7.99)
        cls.addOrderToContainer(container, "SSL Certificate", 1, 119.0)
        cls.addOrderToContainer(container, "Web Hosting", 1, 19.95)
        cls.addOrderToContainer(container, "Email Box", 20, 0.15)
        cls.addOrderToContainer(container, "E-Commerce Setup", 1, 25.0)
        cls.addOrderToContainer(container, "Technical Support", 1, 50.0)

        return container
开发者ID:rwl,项目名称:muntjac,代码行数:20,代码来源:ExampleUtil.py


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