eric6/Graphics/ApplicationDiagramBuilder.py

changeset 8291
3d79b1e5bf3c
parent 8287
30eb7bc13d63
child 8295
3f5e8b0a338e
equal deleted inserted replaced
8290:6970128e3d71 8291:3d79b1e5bf3c
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 }

eric ide

mercurial