Ignore:
Timestamp:
7 Mar 2012, 23:36:47 (13 years ago)
Author:
uli
Message:

Move interface into interfaces module.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/branches/ulif-schoolgrades/src/waeup/sirp/interfaces.py

    r7773 r7791  
    3131from zope.container.interfaces import INameChooser
    3232from zope.interface import Interface, Attribute, implements
     33from zope.schema.interfaces import IObject
    3334from zope.schema.vocabulary import SimpleVocabulary, SimpleTerm
    3435
     
    179180        )
    180181
     182class IResultEntryField(IObject):
     183    """A zope.schema-like field for usage in interfaces.
     184
     185    Marker interface to distuingish result entries from ordinary
     186    object fields. Needed for registration of widgets.
     187    """
     188
    181189class ISIRPUtils(Interface):
    182190    """A collection of methods which are subject to customization.
     
    10041012        required = True,
    10051013        )
    1006 
Note: See TracChangeset for help on using the changeset viewer.