Skip to content
Snippets Groups Projects
Commit 55c6f497 authored by Stefano Borini's avatar Stefano Borini
Browse files

Documentation fixes

parent 4138932b
No related branches found
No related tags found
1 merge request!79Deliver notification info
......@@ -8,18 +8,18 @@ from .i_notification_listener_factory import INotificationListenerFactory
class BaseNotificationListener(ABCHasStrictTraits):
"""Base class for the Notification Listener.
Inherit this class for your MCO implementation
Inherit this class for your listener implementation
"""
#: A reference to the factory
factory = Instance(INotificationListenerFactory)
def __init__(self, factory, *args, **kwargs):
"""Initializes the MCO.
"""Initializes the notification listener.
Parameters
----------
factory: BaseMCOFactory
The factory this BaseMCO belongs to
factory: BaseNotificationListener
The factory this Notification Listener belongs to
"""
self.factory = factory
super(BaseNotificationListener, self).__init__(*args, **kwargs)
......
......@@ -5,7 +5,7 @@ from force_bdss.notification_listeners.i_notification_listener_factory import \
class BaseNotificationListenerModel(ABCHasStrictTraits):
"""Base class for the specific MCO models.
"""Base class for the specific Notification Listener models.
This model will also provide, through traits/traitsui magic the View
that will appear in the workflow manager UI.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment