Commit 66132842 authored by Jean-Paul Smets's avatar Jean-Paul Smets

Added comments to explain that some interfaces are private

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30494 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 31de6f98
...@@ -33,7 +33,7 @@ Products.ERP5.interfaces.amount ...@@ -33,7 +33,7 @@ Products.ERP5.interfaces.amount
from zope.interface import Interface from zope.interface import Interface
class IAmountCore(Interface): class IAmountCore(Interface):
"""Amount Core interface specification """Amount Core private interface specification
IAmountCore defines the minimal set of getters required IAmountCore defines the minimal set of getters required
to implement an amount. to implement an amount.
...@@ -103,7 +103,7 @@ class IAmountCore(Interface): ...@@ -103,7 +103,7 @@ class IAmountCore(Interface):
""" """
class IAmountConversion(Interface): class IAmountConversion(Interface):
"""Amount Conversion interface specification """Amount Conversion private interface specification
IAmountConversion defines methods which can be used IAmountConversion defines methods which can be used
to convert an amount from one quantity unit and to another, to convert an amount from one quantity unit and to another,
...@@ -145,7 +145,7 @@ class IAmountConversion(Interface): ...@@ -145,7 +145,7 @@ class IAmountConversion(Interface):
""" """
class IAmountPrice(Interface): class IAmountPrice(Interface):
"""Amount Price interface specification """Amount Price private interface specification
IAmountPrice defines methods to compute total price IAmountPrice defines methods to compute total price
and unit price of a resource, taking into account and unit price of a resource, taking into account
...@@ -190,7 +190,7 @@ class IAmountPrice(Interface): ...@@ -190,7 +190,7 @@ class IAmountPrice(Interface):
""" """
class IAmountArithmetic(Interface): class IAmountArithmetic(Interface):
"""Amount Arithmetic interface specification """Amount Arithmetic private interface specification
IAmountArithmetic defines methods to add, substract, IAmountArithmetic defines methods to add, substract,
multiply or device amounts of resources. No rounding multiply or device amounts of resources. No rounding
......
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