[Zope-Checkins] CVS: Zope3/lib/python/Zope/Event - IObjectEvent.py:1.1.2.3

Chris Withers chrisw@nipltd.com
Fri, 22 Feb 2002 13:36:56 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/Event
In directory cvs.zope.org:/tmp/cvs-serv1502

Modified Files:
      Tag: Zope-3x-branch
	IObjectEvent.py 
Log Message:
SB/CW -  Correct typoid in interface names.

=== Zope3/lib/python/Zope/Event/IObjectEvent.py 1.1.2.2 => 1.1.2.3 ===
         """returns the object location."""
 
-class IObjectAdded(IObjectEvent):
+class IObjectAddedEvent(IObjectEvent):
     """An object has been added to a container."""
 
     def getLocation():        
         """returns the object location after it has been added to the container"""
 
-class IObjectModified(IObjectEvent):
+class IObjectModifiedEvent(IObjectEvent):
     """An object has been modified"""
 
-class IObjectRemoved(IObjectEvent):
+class IObjectRemovedEvent(IObjectEvent):
     """An object has been removed from a container"""
     
     def getLocation():
         """location of the object before it was removed"""
 
-class IObjectMoved(IObjectEvent):
+class IObjectMovedEvent(IObjectEvent):
     """An object has been moved"""
 
     def getFromLocation():