Changeset 5013 for main/waeup.sirp


Ignore:
Timestamp:
4 Feb 2010, 17:48:56 (15 years ago)
Author:
uli
Message:

Define a first version of a plugin interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/interfaces.py

    r5007 r5013  
    213213        title = u'Longer description of the item found.')
    214214     
     215class IWAeUPSIRPPluggable(Interface):
     216    """A component that might be plugged into a WAeUP SIRP app.
     217    """
     218    factory_name = schema.TextLine(
     219        title = u'Name of the factory to create an instance of the pluggble.',
     220        description = u'The given name should be usable for '
     221                      u'calls like createObject(factory_name).' )
     222
     223    name = schema.TextLine(
     224        title = u'Name under which the pluggable should be created.')
Note: See TracChangeset for help on using the changeset viewer.