コード例 #1
0
ファイル: dictionary_model.py プロジェクト: danielfmva/ert
 def getDictionary(self):
     """ @rtype: dict """
     raise AbstractMethodError(self, "getDictionary")
コード例 #2
0
 def buttonIsEnabled(self):
     """ @rtype: bool """
     raise AbstractMethodError(self, "buttonIsEnabled")
コード例 #3
0
 def addItem(self, value):
     raise AbstractMethodError(self, "addItem")
コード例 #4
0
 def startSimulations(self):
     raise AbstractMethodError(self, "startSimulations")
コード例 #5
0
 def getButtonName(self):
     raise AbstractMethodError(self, "getButtonName")
コード例 #6
0
 def getQueueStatus(self):
     """ @rtype: dict of (JobStatusType, int) """
     raise AbstractMethodError(self, "getQueueStatus")
コード例 #7
0
 def getProgress(self):
     """ @rtype: float """
     raise AbstractMethodError(self, "getProgress")
コード例 #8
0
 def phaseCount(self):
     """ @rtype: int """
     raise AbstractMethodError(self, "phaseCount")
コード例 #9
0
 def setPhaseCount(self, phase_count):
     raise AbstractMethodError(self, "setPhaseCount")
コード例 #10
0
 def getMinValue(self):
     raise AbstractMethodError(self, "getMinValue")
コード例 #11
0
 def killAllSimulations(self):
     raise AbstractMethodError(self, "killAllSimulations")
コード例 #12
0
ファイル: dictionary_model.py プロジェクト: danielfmva/ert
 def removeKey(self, key):
     raise AbstractMethodError(self, "removeKey")
コード例 #13
0
ファイル: dictionary_model.py プロジェクト: danielfmva/ert
 def setValueForKey(self, key, value):
     raise AbstractMethodError(self, "setValueForKey")
コード例 #14
0
ファイル: dictionary_model.py プロジェクト: danielfmva/ert
 def addKey(self, key):
     raise AbstractMethodError(self, "addKey")
コード例 #15
0
 def getRunningTime(self):
     """ @rtype: int """
     raise AbstractMethodError(self, "getRunningTime")
コード例 #16
0
 def currentPhase(self):
     """ @rtype: int """
     raise AbstractMethodError(self, "currentPhase")
コード例 #17
0
 def getQueueSize(self):
     """ @rtype: int """
     raise AbstractMethodError(self, "getQueueSize")
コード例 #18
0
 def getPhaseName(self):
     """ @rtype: str """
     raise AbstractMethodError(self, "getPhaseName")
コード例 #19
0
 def isQueueRunning(self):
     """ @rtype: bool """
     raise AbstractMethodError(self, "isQueueRunning")
コード例 #20
0
 def setIndeterminate(self, indeterminate):
     raise AbstractMethodError(self, "setIndeterminate")
コード例 #21
0
 def isIndeterminate(self):
     """ @rtype: bool """
     raise AbstractMethodError(self, "isIndeterminate")
コード例 #22
0
 def isFinished(self):
     """ @rtype: bool """
     raise AbstractMethodError(self, "isFinished")
コード例 #23
0
 def runSimulations(self):
     raise AbstractMethodError(self, "runSimulations")
コード例 #24
0
 def hasRunFailed(self):
     """ @rtype: bool """
     raise AbstractMethodError(self, "hasRunFailed")
コード例 #25
0
 def buttonTriggered(self):
     raise AbstractMethodError(self, "buttonTriggered")
コード例 #26
0
 def getFailMessage(self):
     """ @rtype: str """
     raise AbstractMethodError(self, "getFailMessage")
コード例 #27
0
 def getList(self):
     """ @rtype: list """
     raise AbstractMethodError(self, "getList")
コード例 #28
0
 def setPhase(self, phase, phase_name):
     raise AbstractMethodError(self, "setPhase")
コード例 #29
0
 def removeItem(self, value):
     raise AbstractMethodError(self, "removeItem")
コード例 #30
0
ファイル: path_model.py プロジェクト: danielfmva/ert
 def setPath(self, value):
     raise AbstractMethodError(self, "setValue")