示例#1
0
    def __init__(self, sdrroot, profile, spd, scd, prf, instanceName, refid, impl, execparams, debugger, window):
        SandboxComponent.__init__(self, sdrroot, profile, spd, scd, prf, instanceName, refid, impl)
        LocalMixin.__init__(self, execparams, debugger, window)
        
        self._kick()

        self._parseComponentXMLFiles()
        self._buildAPI()
示例#2
0
    def __init__(self, sandbox, profile, spd, scd, prf, instanceName, refid, impl, execparams, debugger, window, timeout, autokick=True):
        SandboxComponent.__init__(self, sandbox, profile, spd, scd, prf, instanceName, refid, impl)
        IDEMixin.__init__(self, execparams)

        if autokick:
            self._kick()

        self._parseComponentXMLFiles()
        self._buildAPI()
示例#3
0
    def __init__(self,
                 sandbox,
                 profile,
                 spd,
                 scd,
                 prf,
                 instanceName,
                 refid,
                 impl,
                 execparams,
                 debugger,
                 window,
                 timeout,
                 autokick=True):
        SandboxComponent.__init__(self, sandbox, profile, spd, scd, prf,
                                  instanceName, refid, impl)
        IDEMixin.__init__(self, execparams)

        if autokick:
            self._kick()

        self._parseComponentXMLFiles()
        self._buildAPI()
示例#4
0
 def __init__(self, sandbox, profile, spd, scd, prf, instanceName, refid, impl, execparams,
              initProps, configProps):
     SandboxComponent.__init__(self, sandbox, profile, spd, scd, prf, instanceName, refid, impl)
     IDEMixin.__init__(self, execparams, initProps, configProps)
     self._parseComponentXMLFiles()
     self._buildAPI()
示例#5
0
 def __init__(self, *args, **kwargs):
     SandboxComponent.__init__(self, *args, **kwargs)
示例#6
0
 def __init__(self, sandbox, profile, spd, scd, prf, instanceName, refid, impl, execparams,
              initProps, configProps):
     SandboxComponent.__init__(self, sandbox, profile, spd, scd, prf, instanceName, refid, impl)
     IDEMixin.__init__(self, execparams, initProps, configProps)
     self._parseComponentXMLFiles()
     self._buildAPI()