def __init__(self, outer, **kwargs):
     self.outer = outer
     Applier.__init__(self, **kwargs)
示例#2
0
文件: UIObject.py 项目: sofianhw/pyjs
 def __init__(self, **kwargs):
     # do not initialise element, here, to None, whatever you do.
     # there are circumstances where UIObject.__init__ is the last
     # thing that is done in derived classes, where self.setElement
     # will _already_ have been called.
     Applier.__init__(self, **kwargs)
示例#3
0
文件: UIObject.py 项目: sofianhw/pyjs
 def _getProps(self):
     return Applier._getProps() + self._props
示例#4
0
 def __init__(self, **kwargs):
     # do not initialise element, here, to None, whatever you do.
     # there are circumstances where UIObject.__init__ is the last
     # thing that is done in derived classes, where self.setElement
     # will _already_ have been called.
     Applier.__init__(self, **kwargs)
示例#5
0
 def _getProps(self):
     return Applier._getProps() + self._props
示例#6
0
 def __init__(self, outer, **kwargs):
     self.outer = outer
     Applier.__init__(self, **kwargs)