[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/workflow - __init__.py:1.11

Michael Howitz mh+zope@gocept.com
Thu, 27 Mar 2003 11:32:22 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces/workflow
In directory cvs.zope.org:/tmp/cvs-serv6552/workflow

Modified Files:
	__init__.py 
Log Message:
Added method clear to IProcessDefinition.
This method should clear the whole process definition (remove all states, transitions, ...)


=== Zope3/src/zope/app/interfaces/workflow/__init__.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/interfaces/workflow/__init__.py:1.10	Wed Mar 26 11:58:30 2003
+++ Zope3/src/zope/app/interfaces/workflow/__init__.py	Thu Mar 27 11:32:21 2003
@@ -74,6 +74,9 @@
 
     name = Attribute("""The name of the ProcessDefinition""")
 
+    def clear():
+        """Clear the whole ProcessDefinition.
+        """
 
     def createProcessInstance():
         """Create a new process instance for this process definition.