MappedCollection.st
changeset 254 cccfa2590e6e
parent 131 19e548711b65
child 426 768770c2ff33
--- a/MappedCollection.st	Thu Apr 25 18:11:42 1996 +0200
+++ b/MappedCollection.st	Thu Apr 25 18:18:33 1996 +0200
@@ -11,10 +11,10 @@
 "
 
 Collection subclass:#MappedCollection
-	 instanceVariableNames:'domain map'
-	 classVariableNames:''
-	 poolDictionaries:''
-	 category:'Collections-Sequenceable'
+	instanceVariableNames:'domain map'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Collections-Sequenceable'
 !
 
 !MappedCollection class methodsFor:'documentation'!
@@ -40,6 +40,9 @@
     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. 
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -141,5 +144,5 @@
 !MappedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/MappedCollection.st,v 1.14 1995-11-23 17:06:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/MappedCollection.st,v 1.15 1996-04-25 16:15:38 cg Exp $'
 ! !