X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBProject.py;h=154a3d2f60d85fd77e08cbb0c5ca80174b116946;hb=d6dad7eb666d458f5d0df9bcf9b7dac1b109eb85;hp=907599c7ff9986bb99488c57793200d778fbfe5f;hpb=09c65af968e05eb488e08541a04e4d084f63ee01;p=bertos.git diff --git a/wizard/BProject.py b/wizard/BProject.py index 907599c7..154a3d2f 100644 --- a/wizard/BProject.py +++ b/wizard/BProject.py @@ -4,24 +4,34 @@ # Copyright 2008 Develer S.r.l. (http://www.develer.com/) # All rights reserved. # -# $Id:$ +# $Id$ # # Author: Lorenzo Berni # +import copy + class BProject(object): + """ + Simple class for store and retrieve project informations. + """ def __init__(self): - pass - - def openProject(self, path): - # Fill the BProject fields, opening an existing project - pass + self.infos = {} - def setProjectPath(self, path): - self.projectPath = path + def setInfo(self, key, value): + """ + Store the given value with the name key. + """ + self.infos[key] = value - def setSourcePath(self, path): - self.sourcePath = path + def info(self, key): + """ + Retrieve the value associated with the name key. + """ + if key in self.infos: + return copy.deepcopy(self.infos[key]) + return None - \ No newline at end of file + def __repr__(self): + return repr(self.infos) \ No newline at end of file