MappedCollection.st
changeset 28 350f8e9493a4
parent 19 c25a529288cf
child 31 e223f3cf2995
--- a/MappedCollection.st	Thu Jun 02 13:35:26 1994 +0200
+++ b/MappedCollection.st	Thu Jun 02 13:36:39 1994 +0200
@@ -22,14 +22,20 @@
 COPYRIGHT (c) 1993 by Claus Gittinger
               All Rights Reserved
 
-MappedCollections represent collections of objects that are indirectly indexed by names.
-There are really two collections involved: domain and a map.  The map maps
-between external names and indices into domain, which contains the
-real association.  In order to work properly, the domain and map objects must
-be instances of a subclass of SequenceableCollection or Dictionary. 
+$Header: /cvs/stx/stx/libbasic2/MappedCollection.st,v 1.4 1994-06-02 11:35:40 claus Exp $
+'!
+
+!MappedCollection class methodsFor:'documentation'!
 
-$Header: /cvs/stx/stx/libbasic2/MappedCollection.st,v 1.3 1994-02-25 13:00:36 claus Exp $
-'!
+documentation
+"
+    MappedCollections represent collections of objects that are indirectly indexed by names.
+    There are really two collections involved: domain and a map.  The map maps
+    between external names and indices into domain, which contains the
+    real association.  In order to work properly, the domain and map objects must
+    be instances of a subclass of SequenceableCollection or Dictionary. 
+"
+! !
 
 !MappedCollection class methodsFor:'instance creation'!