def __init__(self, applicationModel, listener): self.startupErrors = [] self.logBuff = StringIO() self.applicationModel = applicationModel self.listener = listener ZThread.__init__(self, name=u"RavenApplicationStartup") #$NON-NLS-1$
def __init__(self, applicationModel, listener): self.startupErrors = [] self.logBuff = StringIO() self.applicationModel = applicationModel self.listener = listener ZThread.__init__(self, name = u"RavenApplicationStartup") #$NON-NLS-1$
def __init__(self, command): self.command = command self.running = False name = command.getName() + u"_ZAsyncCommand" #$NON-NLS-1$ ZThread.__init__(self, name=name, daemonic=True)
def __init__(self, runnable, listener): self.listener = listener ZThread.__init__(self, runnable, u"ProgressDialogThread") #$NON-NLS-1$
def __init__(self, command): self.command = command self.running = False name = command.getName() + u"_ZAsyncCommand" #$NON-NLS-1$ ZThread.__init__(self, name = name, daemonic = True)