class: VirtualArray
authorClaus Gittinger <cg@exept.de>
Fri, 22 Feb 2013 17:33:32 +0100
changeset 2906 6838bf53c834
parent 2905 73332f14d929
child 2907 180ea50c301b
class: VirtualArray added: #copyright
VirtualArray.st
--- a/VirtualArray.st	Wed Feb 20 16:39:59 2013 +0100
+++ b/VirtualArray.st	Fri Feb 22 17:33:32 2013 +0100
@@ -1,3 +1,14 @@
+"
+ COPYRIGHT (c) 2012 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' }"
 
 SequenceableCollection subclass:#VirtualArray
@@ -9,6 +20,20 @@
 
 !VirtualArray class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2012 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
 "
     An Array which computes its values on demand and does NOT remember those values.
@@ -72,9 +97,10 @@
 !VirtualArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/VirtualArray.st,v 1.1 2012-02-27 20:11:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/VirtualArray.st,v 1.2 2013-02-22 16:33:32 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/VirtualArray.st,v 1.1 2012-02-27 20:11:43 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/VirtualArray.st,v 1.2 2013-02-22 16:33:32 cg Exp $'
 ! !
+