src/pyams_utils/interfaces/data.py
branchdev-tf
changeset 427 63284c98cdc1
parent 367 2c95d34496f5
equal deleted inserted replaced
426:2022e4da3ad9 427:63284c98cdc1
    15 This interface allows to define custom "data" properties on any object providing
    15 This interface allows to define custom "data" properties on any object providing
    16 IObjectData interface. These properties are used to render "data" attributes into
    16 IObjectData interface. These properties are used to render "data" attributes into
    17 HTML code.
    17 HTML code.
    18 """
    18 """
    19 
    19 
    20 __docformat__ = 'restructuredtext'
       
    21 
       
    22 from zope.interface import Interface
    20 from zope.interface import Interface
    23 from zope.schema import Dict
    21 from zope.schema import Dict
       
    22 
       
    23 __docformat__ = 'restructuredtext'
    24 
    24 
    25 
    25 
    26 class IObjectData(Interface):
    26 class IObjectData(Interface):
    27     """Object data generic interface
    27     """Object data generic interface
    28 
    28