interfaces.py
2008-02-28 09:37...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Interfaces for the Zope 3 based product package
$Id: interfaces.py 13944 2007-11-27 21:11:44Z cray $
"""
__author__ = ""
__license__ = "GPL"
__version__ = "$Revision: 13944 $"
from zope.interface import Interface
from zope.schema import Text, TextLine, Field, Bool, Datetime
from zope.app.container.interfaces import IContained, IContainer
from zope.app.container.constraints import ItemTypePrecondition
from zope.app.container.constraints import ContainerTypesConstraint
class I(Interface) :
title = Text(
title = u'Title',
description = u'Title',
default = u'',
required = False)



