interfaces.py
2008-02-28 00:24...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Interfaces for the Zope 3 based product package
$Id: interfaces.py 49807 2008-01-05 15:24:57Z antel $
"""
__author__ = "Elena Antusheva, 2008"
__license__ = "GPL"
__version__ = "$Revision: 49807 $"
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 IAnyTitle(Interface) :
title = TextLine(title = u'Title')
shorttitle = TextLine(title = u'Title')



