bookmarknote.py
2008-01-11 19:20...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Product class for the Zope 3 based product package
$Id: bookmarknote.py 13429 2007-11-30 23:49:15Z cray $
"""
__author__ = "Andrey Orlov"
__license__ = "GPL"
__version__ = "$Revision: 13429 $"
from zope.interface import implements
from persistent import Persistent
from zope.app.container.interfaces import IContained
from zope.app.container.contained import Contained
from interfaces import IBookmarkNote
class BookmarkNote(Contained,Persistent):
__doc__ = IBookmarkNote.__doc__
implements(IBookmarkNote,IContained)
mainurltext = None
urltext = None



