dictannotation.py
2008-02-28 00:15...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Product class for the Zope 3 based product package
$Id: dictannotation.py 49635 2007-12-25 08:57:10Z antel $
"""
__author__ = "Elena Antusheva, 2007"
__license__ = "GPL"
__version__ = "$Revision: 49635 $"
from persistent import Persistent
from zope.interface import Interface
from zope.interface import implements,implementedBy
from interfaces import IDictAnnotation,IDictAnnotationAble
class DictAnnotation(Persistent) :
__doc__ = IDictAnnotation.__doc__
implements(IDictAnnotation)
# See dictannotation.interfaces.IDictAnnotation
suffixes = ''
keyword = []
area = []
gender = []



