JobRunner job parameter data
Definition at line 70 of file JobRunner.py.
◆ __init__()
def python.JobRunner.JobRunnerParameter.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
value = '' , |
|
|
|
description = '' , |
|
|
|
isSpecial = False |
|
) |
| |
Definition at line 73 of file JobRunner.py.
73 def __init__(self,name,value='',description='',isSpecial=False):
76 self.description = description
77 self.isSpecial = isSpecial
◆ __str__()
def python.JobRunner.JobRunnerParameter.__str__ |
( |
|
self | ) |
|
Definition at line 79 of file JobRunner.py.
81 return "%-20s = %-20s # SPECIAL - %s" % (self.name,self.value,self.description)
84 return "%-20s = %-20s # %s" % (self.name,self.value,self.description)
86 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: