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