noteannotation.py
2008-01-11 19:06...
from persistent import Persistent
from zope.interface import implements
from interfaces import INoteAnnotation
from zope.app.container.contained import Contained
from zope.app.container.interfaces import IContained
class NoteAnnotation(Persistent) :
__doc__ = INoteAnnotation.__doc__
implements(INoteAnnotation)
# See noteannotation.interfaces.INoteAnnotation
alarmdate = None
# See noteannotation.interfaces.INoteAnnotation
keywords = []



