ObjectCoder.st
changeset 24637 9d7318805f06
parent 23951 1cbf730208f8
child 24649 a9ce1db0cf15
equal deleted inserted replaced
24636:85131b98ee68 24637:9d7318805f06
   239 
   239 
   240     anObject acceptVisitor:self with:aParameter.
   240     anObject acceptVisitor:self with:aParameter.
   241 !
   241 !
   242 
   242 
   243 nextPutAll:aCollectionOfObjects
   243 nextPutAll:aCollectionOfObjects
   244     "encode all objects from the argument"
   244     "encode all objects from the argument.
       
   245      Answer the receiver"
   245 
   246 
   246     aCollectionOfObjects do:[:o |
   247     aCollectionOfObjects do:[:o |
   247         self nextPut:o
   248         self nextPut:o
   248     ]
   249     ]
   249 
       
   250 !
   250 !
   251 
   251 
   252 startEncoding
   252 startEncoding
   253     "redefinable - allows subclass to create a file header or similar stuff"
   253     "redefinable - allows subclass to create a file header or similar stuff"
   254 
   254