[Zope-CVS] CVS: Products/AdaptableStorage/mapper/interfaces - IClassifier.py:1.2
Shane Hathaway
shane@zope.com
Thu, 16 Jan 2003 12:19:24 -0500
Update of /cvs-repository/Products/AdaptableStorage/mapper/interfaces
In directory cvs.zope.org:/tmp/cvs-serv22641/mapper/interfaces
Modified Files:
IClassifier.py
Log Message:
Fixed docstrings: classifiers specifically get load events and store events,
not just mapper events.
=== Products/AdaptableStorage/mapper/interfaces/IClassifier.py 1.1 => 1.2 ===
--- Products/AdaptableStorage/mapper/interfaces/IClassifier.py:1.1 Tue Dec 31 16:47:46 2002
+++ Products/AdaptableStorage/mapper/interfaces/IClassifier.py Thu Jan 16 12:19:21 2003
@@ -39,7 +39,7 @@
def classifyState(event):
"""Returns a classification and mapper_name.
- event is an IMapperEvent.
+ event is an ILoadEvent.
May load the classification from storage.
"""
@@ -47,5 +47,5 @@
def store(event, classification):
"""Stores the classification of an object.
- event is an IMapperEvent.
+ event is an IStoreEvent.
"""