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)