432 self.noModules = Utilities.toBool(parts[1].split("=", 1)[1].strip()) |
432 self.noModules = Utilities.toBool(parts[1].split("=", 1)[1].strip()) |
433 |
433 |
434 self.initialize() |
434 self.initialize() |
435 |
435 |
436 return True |
436 return True |
|
437 |
|
438 def toDict(self): |
|
439 """ |
|
440 Public method to collect data to be persisted. |
|
441 |
|
442 @return dictionary containing data to be persisted |
|
443 @rtype dict |
|
444 """ |
|
445 return { |
|
446 "project_name": self.project.getProjectName(), |
|
447 "no_modules": self.noModules, |
|
448 } |