StringCollection.st
changeset 89 7be0b86ef80f
parent 87 a0cc38a72871
child 97 b876f90648aa
--- a/StringCollection.st	Thu Jun 02 18:22:49 1994 +0200
+++ b/StringCollection.st	Thu Jun 02 19:20:13 1994 +0200
@@ -18,17 +18,45 @@
 !
 
 Text comment:'
+COPYRIGHT (c) 1989 by Claus Gittinger
+              All Rights Reserved
+'!
 
-COPYRIGHT (c) 1989 by Claus Gittinger
+!Text class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 1989 by Claus Gittinger
               All Rights Reserved
 
-text is an array of lines which are strings.
-this is just temporary - may change in the future.
-Also, Text is a bad name - there is something totally different also named Text
-in ST-80 ...
+ 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/libbasic/StringCollection.st,v 1.6 1994-06-02 11:36:22 claus Exp $
-'!
+version
+"
+$Header: /cvs/stx/stx/libbasic/StringCollection.st,v 1.7 1994-06-02 17:20:11 claus Exp $
+"
+!
+
+documentation
+"
+    text is an array of lines which are strings.
+    This class is temporary (a historic leftover) - it may change or
+    even vanish in the future. Use OrderedCollections or other standard
+    classes to represent collections of strings.
+
+    Also, Text is a very bad name - there is something totally different 
+    also named Text in ST-80 ...
+    So, even if kept, it will be definitely be renamed to something like
+    StringCollection in one of the next versions.
+"
+! !
 
 !Text class methodsFor:'instance creation'!