interfaces.py
2008-02-28 09:28...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Interfaces for the Zope 3 based product package
$Id: interfaces.py 50354 2008-01-26 16:44:14Z cray $
"""
__author__ = "................., ...."
__license__ = "GPL"
__version__ = "$Revision: 50354 $"
from zope.interface import Interface
from zope.schema import TextLine, Choice, Tuple
from zope.app.container.interfaces import IContained, IContainer
from zope.schema.vocabulary import SimpleVocabulary
class IIdeaAnnotationAble(Interface) :
pass
class IIdeaAnnotation(Interface) :
ideannotationkey="ideaannotation.ideaannotation.IdeaAnnotation"



