Exemple #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$
Exemple #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$
Exemple #3
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)
Exemple #4
0
 def __init__(self, runnable, listener):
     self.listener = listener
     ZThread.__init__(self, runnable, u"ProgressDialogThread") #$NON-NLS-1$
Exemple #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)