コード例 #1
0
ファイル: Component.py プロジェクト: danse-inelastic/pyre-all
    def __init__(self, name, facility):
        Configurable.__init__(self, name)
        self.facility = facility

        self._showHelpOnly = False
        
        return
コード例 #2
0
ファイル: Component.py プロジェクト: geodynamics/pythia
    def __init__(self, name=None, facility=None):
        Configurable.__init__(self, name)
        #self.facility = facility # not used

        self._helpRequested = False

        return
コード例 #3
0
ファイル: Component.py プロジェクト: zliu72/Combustion
    def __init__(self, name, facility):
        Configurable.__init__(self, name)
        self.facility = facility

        import journal
        self._info = journal.info(self.name)
        self._debug = journal.debug(self.name)
        return
コード例 #4
0
ファイル: Shell.py プロジェクト: haogods/etl_task
    def __init__(self, app):
        Configurable.__init__(self, app.name)

        self.app = app
        self.registry = None
コード例 #5
0
 def __init__(self, name=None):
     if name is None:
         name = "session"
     Configurable.__init__(self, name)
     self._info = journal.info(name)
     return
コード例 #6
0
ファイル: Stationery.py プロジェクト: zliu72/Combustion
 def __init__(self, name):
     Configurable.__init__(self, name)
     self._debug = journal.debug(name)
     return
コード例 #7
0
    def __init__(self, app):
        Configurable.__init__(self, app.name)

        self.app = app
        self.registry = None
コード例 #8
0
 def __init__(self, name):
     Configurable.__init__(self, name)
     return