4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
9 # Author: Lorenzo Berni <duplo@develer.com>
12 class BProject(object):
14 Simple class for store and retrieve project informations.
20 def setInfo(self, key, value):
22 Store the given value with the name key.
24 self.infos[key] = value
28 Retrieve the value associated with the name key.
30 if key in self.infos.keys():
31 return self.infos[key]
35 return repr(self.infos)