JobRunner job parameter data
Definition at line 69 of file JobRunner.py.
◆ __init__()
| def python.JobRunner.JobRunnerParameter.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
value = '', |
|
|
|
description = '', |
|
|
|
isSpecial = False |
|
) |
| |
Definition at line 72 of file JobRunner.py.
72 def __init__(self,name,value='',description='',isSpecial=False):
75 self.description = description
76 self.isSpecial = isSpecial
◆ __str__()
| def python.JobRunner.JobRunnerParameter.__str__ |
( |
|
self | ) |
|
Definition at line 78 of file JobRunner.py.
80 return "%-20s = %-20s # SPECIAL - %s" % (self.name,self.value,self.description)
83 return "%-20s = %-20s # %s" % (self.name,self.value,self.description)
85 return "%-20s = %-20s" % (self.name,self.value)
◆ description
| python.JobRunner.JobRunnerParameter.description |
◆ isSpecial
| python.JobRunner.JobRunnerParameter.isSpecial |
◆ name
| python.JobRunner.JobRunnerParameter.name |
◆ value
| python.JobRunner.JobRunnerParameter.value |
The documentation for this class was generated from the following file: