VariableArray.st
changeset 31 e223f3cf2995
parent 28 350f8e9493a4
child 36 d046fe84ea67
--- a/VariableArray.st	Thu Jun 02 18:22:02 1994 +0200
+++ b/VariableArray.st	Thu Jun 02 19:20:18 1994 +0200
@@ -18,16 +18,41 @@
 !
 
 VariableArray comment:'
+COPYRIGHT (c) 1989 by Claus Gittinger
+              All Rights Reserved
+'!
 
-COPYRIGHT (c) 1989 by Claus Gittinger
+!VariableArray class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
 
-VariableArrays can grow and shrink - in contrast to Arrays which are
-fixed in size - this may change in the future.
-(make Array be FixedArray, and this one named Array
+ 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.
+"
+!
 
-$Header: /cvs/stx/stx/libbasic2/VariableArray.st,v 1.5 1994-06-02 11:36:29 claus Exp $
-'!
+version
+"
+$Header: /cvs/stx/stx/libbasic2/VariableArray.st,v 1.6 1994-06-02 17:20:16 claus Exp $
+"
+!
+
+documentation
+"
+    VariableArrays can grow and shrink - in contrast to Arrays which are
+    fixed in size. Do not use this class - its a historic leftover from
+    times when no OrderedCollection existed.
+    Use OrderedCollection, which offers more functionality, and is even
+    a bit faster.
+"
+! !
 
 !VariableArray class methodsFor:'instance creation'!