source: waeup/branches/ulif-rewrite/src/waeup/widgets/interfaces.py @ 4468

Last change on this file since 4468 was 4468, checked in by uli, 15 years ago

Update interface. We support delivering multiple tables for a given
context now.

File size: 227 bytes
RevLine 
[4403]1##
2## interfaces.py
3"""Interfaces for widgets.
4"""
5from zope.interface import Interface
6
7class ITableProvider(Interface):
8    """A provider for tables.
9    """
[4468]10    def getTables():
11        """Get a tuple of tables.
[4403]12        """
Note: See TracBrowser for help on using the repository browser.