#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 15 Feb 2017 22:13:36 +0100
changeset 4330 ce8ba4a78326
parent 4329 a9d435360ebb
child 4331 6b08efe6d794
#DOCUMENTATION by cg class: CollectingReadStream added: #copyright
CollectingReadStream.st
--- a/CollectingReadStream.st	Wed Feb 15 22:12:56 2017 +0100
+++ b/CollectingReadStream.st	Wed Feb 15 22:13:36 2017 +0100
@@ -1,5 +1,18 @@
+"
+ COPYRIGHT (c) 2009 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 PeekableStream subclass:#CollectingReadStream
 	instanceVariableNames:'collectBlock inStream'
 	classVariableNames:''
@@ -9,6 +22,20 @@
 
 !CollectingReadStream class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2009 by Claus Gittinger
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
 documentation
 "
     A stream which evaluates collectBlock for every element
@@ -162,6 +189,6 @@
 !CollectingReadStream class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/CollectingReadStream.st,v 1.6 2014-04-30 18:19:37 cg Exp $'
+    ^ '$Header$'
 ! !