Commit b8076d15 authored by Jérome Perrin's avatar Jérome Perrin

private accessors are not part of the interface.

remove unnecessary 'pass' statement in method bodies.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28673 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 950895b1
...@@ -47,25 +47,13 @@ class IVariated(Interface): ...@@ -47,25 +47,13 @@ class IVariated(Interface):
a discrete variation (ie. a list of category a discrete variation (ie. a list of category
memberships) memberships)
""" """
pass
def _setVariationCategoryList(node_list):
"""
modifies the discrete variation of an
variated instance by providing a list
of relative URLs
"""
pass
def setVariationCategoryList(node_list): def setVariationCategoryList(node_list):
""" """
modifies the discrete variation of an modifies the discrete variation of an
variated instance by providing a list variated instance by providing a list
of relative URLs of relative URLs
reindexes the object
""" """
pass
def getVariationBaseCategoryList(node_list): def getVariationBaseCategoryList(node_list):
""" """
...@@ -73,15 +61,6 @@ class IVariated(Interface): ...@@ -73,15 +61,6 @@ class IVariated(Interface):
which are used to define discrete variations which are used to define discrete variations
for this instance for this instance
""" """
pass
def _setVariationBaseCategoryList(node_list):
"""
modifies the list of base category ids
which are used to define discrete variations
for this instance
"""
pass
def setVariationBaseCategoryList(node_list): def setVariationBaseCategoryList(node_list):
""" """
...@@ -89,26 +68,17 @@ class IVariated(Interface): ...@@ -89,26 +68,17 @@ class IVariated(Interface):
which are used to define discrete variations which are used to define discrete variations
for this instance for this instance
""" """
pass
# General Variation accessors # General Variation accessors
def getVariationValue(): def getVariationValue():
""" """
Returns a VariationValue object. Returns a VariationValue object.
""" """
pass
def _setVariationValue(value):
"""
Private setter for VariationValue.
"""
pass
def setVariationValue(value): def setVariationValue(value):
""" """
Sets the VariationValue. Sets the VariationValue.
""" """
pass
# The following methods are intended to access the # The following methods are intended to access the
...@@ -123,7 +93,6 @@ class IVariated(Interface): ...@@ -123,7 +93,6 @@ class IVariated(Interface):
returns a list of categories which are acceptable returns a list of categories which are acceptable
as discrete variation values as discrete variation values
""" """
pass
def getVariationRangeCategoryItemList(base_category_list=(), def getVariationRangeCategoryItemList(base_category_list=(),
display_id='getTitle', base=1, current_category=None): display_id='getTitle', base=1, current_category=None):
...@@ -131,14 +100,12 @@ class IVariated(Interface): ...@@ -131,14 +100,12 @@ class IVariated(Interface):
returns a list of (category.id, category.display_id()) which are acceptable returns a list of (category.id, category.display_id()) which are acceptable
as discrete variation values as discrete variation values
""" """
pass
def getVariationRangeBaseCategoryList(base_category_list=(), base=1): def getVariationRangeBaseCategoryList(base_category_list=(), base=1):
""" """
returns a list of base categories which are acceptable returns a list of base categories which are acceptable
as discrete variation values as discrete variation values
""" """
pass
def getVariationRangeBaseCategoryItemList(base_category_list=(), def getVariationRangeBaseCategoryItemList(base_category_list=(),
display_id='getTitle', base=1, current_category=None): display_id='getTitle', base=1, current_category=None):
...@@ -146,4 +113,3 @@ class IVariated(Interface): ...@@ -146,4 +113,3 @@ class IVariated(Interface):
returns a list of base category items which are acceptable returns a list of base category items which are acceptable
as discrete variation values as discrete variation values
""" """
pass
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