コード例 #1
0
 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)