Commit e69c79ed authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

implement getDefaultConfigurationPropertyListDict().


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36779 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 70b08874
......@@ -100,6 +100,18 @@ class SolverDecision(ConfigurableMixin, XMLObject):
else:
return solver_type.getDefaultConfigurationPropertyDict(self)
def getDefaultConfigurationPropertyListDict(self):
"""
Returns a dictionary of possible values for specified
configurable object
(implementation)
"""
solver_type = self.getSolverValue()
if solver_type is None:
return {}
else:
return solver_type.getDefaultConfigurationPropertyListDict(self)
def getExplanationMessage(self, all=False):
"""
Returns the HTML message that describes the detail of divergences to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment