Commit 88b2ce4d authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

rename the method to get a dict of possible values.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@36851 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 4363bec0
......@@ -100,7 +100,7 @@ class SolverDecision(ConfigurableMixin, XMLObject):
else:
return solver_type.getDefaultConfigurationPropertyDict(self)
def getDefaultConfigurationPropertyListDict(self):
def getConfigurationPropertyListDict(self):
"""
Returns a dictionary of possible values for specified
configurable object
......@@ -110,7 +110,7 @@ class SolverDecision(ConfigurableMixin, XMLObject):
if solver_type is None:
return {}
else:
return solver_type.getDefaultConfigurationPropertyListDict(self)
return solver_type.getConfigurationPropertyListDict(self)
def getExplanationMessage(self, all=False):
"""
......
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