[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/Workflow - IWorkflowActionBegunEvent.py:1.1.2.1 WorkflowActionBegunEvent.py:1.1.2.1

Vincenzo Di Somma e.disomma@icube.it
Tue, 5 Mar 2002 05:34:32 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow
In directory cvs.zope.org:/tmp/cvs-serv13431

Added Files:
      Tag: Zope-3x-branch
	IWorkflowActionBegunEvent.py WorkflowActionBegunEvent.py 
Log Message:
WorkflowBegunActionEvent added



=== Added File Zope3/lib/python/Zope/App/Workflow/IWorkflowActionBegunEvent.py ===
"""
    Interfaces for workflow-related action begun event.
"""

from IWorkflowEvents import IWorkflowEvent


class IWorkflowActionBegunEvent( IWorkflowEvent ):
    """
        Note the beginning of a workflow-aware action.
    """
    

    def getAction():
        """

        """
        pass

    


=== Added File Zope3/lib/python/Zope/App/Workflow/WorkflowActionBegunEvent.py ===
from IWorkflowActionBegunEvent import IWorkflowActionBegunEvent

class WorkflowActionBegunEvent:


    __implements__ =  IWorkflowActionBegunEvent

    ############################################################
    # Implementation methods for interface
    # Zope.App.Workflow.IWorkflowActionBegunEvent

    def getAction(self):
        '''See interface IWorkflowActionBegunEvent'''
    #
    ############################################################