Esempio n. 1
0
 def __init__(self, ob, short_name=None):
     ProxyBase.__init__(self, ob)
     self.short_name = short_name
 def __init__(self, ob, container=None, name=None):
     ProxyBase.__init__(self, ob)
     self.__parent__ = container
     self.__name__ = name
Esempio n. 3
0
 def __init__(self, base, site_manager):
     ProxyBase.__init__(self, base)
     self.__site_manager = site_manager
Esempio n. 4
0
 def __init__(self, ob, container=None, name=None):
     ProxyBase.__init__(self, ob)
     self.__parent__ = container
     self.__name__ = name
Esempio n. 5
0
 def __init__(self, ob, short_name=None):
     ProxyBase.__init__(self, ob)
     self.short_name = short_name
Esempio n. 6
0
 def __init__(self, file, streamsize=1 << 16):
     ProxyBase.__init__(self, file)
     self.streamsize = streamsize
Esempio n. 7
0
 def __init__(self, ob, target):
     ProxyBase.__init__(self, ob)
     self.__target__ = target
Esempio n. 8
0
 def __init__(self, ob, title=None, description=None):
     ProxyBase.__init__(self, ob)
     self.title = title
     self.description = description
Esempio n. 9
0
 def __init__(self, ob, target):
     ProxyBase.__init__(self, ob)
     self.__target__ = target
Esempio n. 10
0
 def __init__(self, ob, title=None, description=None):
     ProxyBase.__init__(self, ob)
     self.title = title
     self.description = description
 def __init__(self, context):
     self.context = context
     ProxyBase.__init__(self, globalhelp)