interfaces.py
2008-02-28 00:20...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Interfaces for the Zope 3 based product package
$Id: interfaces.py 49677 2007-12-27 23:19:00Z cray $
"""
__author__ = "Elena Antusheva, 2007"
__license__ = "GPL"
__version__ = "$Revision: 49677 $"
from zope.interface import Interface
from zope.schema import Text, TextLine, Field, Bool, Datetime, Tuple, Choice
from ng.schema.interfaceswitcher.interfacesetfield import InterfaceSet
from ng.schema.interfaceswitcher.interfacechoicefield import InterfaceChoice
class IAnnotationSwitcher(Interface) :
iface = InterfaceSet(
title=u"Interface list"
)
IAnnotationSwitcher['iface'].iface = IAnnotationSwitcher



