[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - event.py:1.8
Steve Alexander
steve@cat-box.net
Sat, 7 Jun 2003 03:00:18 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv8100/src/zope/app/interfaces
Modified Files:
event.py
Log Message:
Added XXX comment about correct interface hierarchy.
=== Zope3/src/zope/app/interfaces/event.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/interfaces/event.py:1.7 Tue May 20 12:57:52 2003
+++ Zope3/src/zope/app/interfaces/event.py Sat Jun 7 03:00:18 2003
@@ -297,11 +297,14 @@
class IObjectRemovedEvent(IObjectEvent):
"""An object has been removed from a container"""
+# XXX IObjectMovedEvent should extend IObjectAddedEvent and
+# IObjectRemovedEvent
class IObjectMovedEvent(IObjectEvent):
"""An object has been moved"""
fromLocation = Attribute("The old location for the object.")
+# XXX IObjectCopiedEvent should extend IObjectAddedEvent
class IObjectCopiedEvent(IObjectEvent):
"""An object has been copied"""