#include <OSOption.h>
Public Member Functions | |
JobOption () | |
Default constructor. | |
~JobOption () | |
Class destructor. | |
bool | IsEqual (JobOption *that) |
A function to check for the equality of two objects. | |
bool | setRandom (double density, bool conformant) |
A function to make a random instance of this class. | |
bool | deepCopyFrom (JobOption *that) |
A function to make a deep copy of an instance of this class. | |
Public Attributes | |
TimeSpan * | maxTime |
the maximum time allowed | |
std::string | requestedStartTime |
the requested time to start the job | |
JobDependencies * | dependencies |
the dependency set | |
DirectoriesAndFiles * | requiredDirectories |
directories required to run the job | |
DirectoriesAndFiles * | requiredFiles |
files required to run the job | |
DirectoriesAndFiles * | directoriesToMake |
directories to make during the job | |
DirectoriesAndFiles * | filesToMake |
files to make during the job | |
PathPairs * | inputDirectoriesToMove |
input directories to move or copy | |
PathPairs * | inputFilesToMove |
input files to move or copy | |
PathPairs * | outputFilesToMove |
output files to move or copy | |
PathPairs * | outputDirectoriesToMove |
output directories to move or copy | |
DirectoriesAndFiles * | filesToDelete |
files to delete upon completion | |
DirectoriesAndFiles * | directoriesToDelete |
directories to delete upon completion | |
Processes * | processesToKill |
processes to kill upon completion | |
OtherOptions * | otherOptions |
list of other job options |
the JobOption class.
Definition at line 1065 of file OSOption.h.
JobOption::JobOption | ( | ) |
Default constructor.
Definition at line 378 of file OSOption.cpp.
JobOption::~JobOption | ( | ) |
Class destructor.
Definition at line 400 of file OSOption.cpp.
bool JobOption::IsEqual | ( | JobOption * | that | ) |
A function to check for the equality of two objects.
Definition at line 9819 of file OSOption.cpp.
bool JobOption::setRandom | ( | double | density, | |
bool | conformant | |||
) |
A function to make a random instance of this class.
density,: | corresponds to the probability that a particular child element is created | |
conformant,: | if true enforces side constraints not enforceable in the schema (e.g., agreement of "numberOfXXX" attributes and <XXX> children) |
Definition at line 12328 of file OSOption.cpp.
bool JobOption::deepCopyFrom | ( | JobOption * | that | ) |
A function to make a deep copy of an instance of this class.
that,: | the instance from which information is to be copied |
Definition at line 13442 of file OSOption.cpp.
the maximum time allowed
Definition at line 1070 of file OSOption.h.
std::string JobOption::requestedStartTime |
the requested time to start the job
Definition at line 1073 of file OSOption.h.
the dependency set
Definition at line 1076 of file OSOption.h.
directories required to run the job
Definition at line 1079 of file OSOption.h.
files required to run the job
Definition at line 1082 of file OSOption.h.
directories to make during the job
Definition at line 1085 of file OSOption.h.
files to make during the job
Definition at line 1088 of file OSOption.h.
input directories to move or copy
Definition at line 1091 of file OSOption.h.
input files to move or copy
Definition at line 1094 of file OSOption.h.
output files to move or copy
Definition at line 1097 of file OSOption.h.
output directories to move or copy
Definition at line 1100 of file OSOption.h.
files to delete upon completion
Definition at line 1103 of file OSOption.h.
directories to delete upon completion
Definition at line 1106 of file OSOption.h.
processes to kill upon completion
Definition at line 1109 of file OSOption.h.
list of other job options
Definition at line 1112 of file OSOption.h.