示例#1
0
    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$
示例#2
0
    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$
示例#3
0
文件: command.py 项目: mpm2050/Raven
 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)
示例#4
0
 def __init__(self, runnable, listener):
     self.listener = listener
     ZThread.__init__(self, runnable, u"ProgressDialogThread") #$NON-NLS-1$
示例#5
0
 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)