Encoding
authorStefan Vogel <sv@exept.de>
Tue, 25 Jun 2002 15:59:36 +0200
changeset 6593 bd26120c15f5
parent 6592 d008e9aa4bb3
child 6594 d354bbc111d0
Encoding
Collection.st
SequenceableCollection.st
--- a/Collection.st	Mon Jun 24 12:09:11 2002 +0200
+++ b/Collection.st	Tue Jun 25 15:59:36 2002 +0200
@@ -1265,6 +1265,13 @@
     "Modified: / 19.4.1998 / 20:03:57 / cg"
 ! !
 
+!Collection methodsFor:'encoding'!
+
+encodeOn:anEncoder with:aParameter
+
+    anEncoder encodeCollection:self with:aParameter
+! !
+
 !Collection methodsFor:'enumerating'!
 
 addAllTo:aCollection
@@ -2399,6 +2406,6 @@
 !Collection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.125 2002-05-16 15:37:06 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Collection.st,v 1.126 2002-06-25 13:58:36 stefan Exp $'
 ! !
 Collection initialize!
--- a/SequenceableCollection.st	Mon Jun 24 12:09:11 2002 +0200
+++ b/SequenceableCollection.st	Tue Jun 25 15:59:36 2002 +0200
@@ -2473,9 +2473,7 @@
 
 encodeOn:anEncoder with:aParameter
 
-    anEncoder encodeSequencableCollection:self with:aParameter
-
-
+    anEncoder encodeSequenceableCollection:self with:aParameter
 ! !
 
 !SequenceableCollection methodsFor:'enumerating'!
@@ -5694,6 +5692,6 @@
 !SequenceableCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.165 2002-06-07 10:43:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SequenceableCollection.st,v 1.166 2002-06-25 13:59:36 stefan Exp $'
 ! !
 SequenceableCollection initialize!