儲存庫 vbox 的更動 55589
- 時間撮記:
- 2015-5-1 下午08:07:25 (10 年 以前)
- svn:sync-xref-src-repo-rev:
- 99962
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/glue/vboxapi.py
r54684 r55589 293 293 return None 294 294 295 def setArray(self, oInterface, sAttrib, aoArray): 296 """ 297 Sets the value (aoArray) of the array attribute 'sAttrib' in 298 interface 'oInterface'. 299 300 This is for hiding platform specific differences in attributes 301 setting arrays. 302 """ 303 _ = oInterface 304 _ = sAttrib 305 _ = aoArray 306 return None 307 295 308 def initPerThread(self): 296 309 """ … … 550 563 def getArray(self, oInterface, sAttrib): 551 564 return oInterface.__getattr__(sAttrib) 565 566 def setArray(self, oInterface, sAttrib, aoArray): 567 return oInterface.__setattr__(sAttrib, aoArray) 552 568 553 569 def initPerThread(self): … … 754 770 return oInterface.__getattr__('get' + ComifyName(sAttrib))() 755 771 772 def setArray(self, oInterface, sAttrib, aoArray): 773 return oInterface.__getattr__('set' + ComifyName(sAttrib))(aoArray) 774 756 775 def initPerThread(self): 757 776 import xpcom … … 878 897 def getArray(self, oInterface, sAttrib): 879 898 return oInterface.__getattr__(sAttrib) 899 900 def setArray(self, oInterface, sAttrib, aoArray): 901 return oInterface.__setattr__(sAttrib, aoArray) 880 902 881 903 def waitForEvents(self, timeout): … … 1040 1062 return self.platform.getArray(oInterface, sAttrib) 1041 1063 1064 def setArray(self, oInterface, sAttrib, aoArray): 1065 """ See PlatformBase::setArray(). """ 1066 return self.platform.setArray(oInterface, sAttrib, aoArray) 1067 1042 1068 def createListener(self, oImplClass, dArgs=None): 1043 1069 """ See PlatformBase::createListener(). """
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器