StringCollection.st
changeset 1290 15ba3221b89b
parent 1064 f7a06e0ca253
child 3601 c879b9a15f38
equal deleted inserted replaced
1289:3abde2c376de 1290:15ba3221b89b
    35 
    35 
    36 documentation
    36 documentation
    37 "
    37 "
    38     StringCollection is an variable sized array of lines which are strings.
    38     StringCollection is an variable sized array of lines which are strings.
    39     WARNING:
    39     WARNING:
    40 	This class is temporary (a historic leftover) - it may change or
    40         This class is temporary (a historic leftover) - it may change or
    41 	even vanish in the future. Use OrderedCollections or other standard
    41         even vanish in the future. Use OrderedCollections or other standard
    42 	classes to represent collections of strings.
    42         classes to represent collections of strings.
    43 
    43 
    44     StringCollection used to be called Text, but this is a very bad name
    44     StringCollection used to be called Text, but this is a very bad name
    45      - there is something totally different also named Text in ST-80 ...
    45      - there is something totally different also named Text in ST-80 ...
       
    46 
       
    47     [author:]
       
    48         Claus Gittinger
    46 "
    49 "
    47 ! !
    50 ! !
    48 
    51 
    49 !StringCollection class methodsFor:'instance creation'!
    52 !StringCollection class methodsFor:'instance creation'!
    50 
    53 
   215 ! !
   218 ! !
   216 
   219 
   217 !StringCollection class methodsFor:'documentation'!
   220 !StringCollection class methodsFor:'documentation'!
   218 
   221 
   219 version
   222 version
   220     ^ '$Header: /cvs/stx/stx/libbasic/StringCollection.st,v 1.24 1996-03-04 16:11:22 cg Exp $'
   223     ^ '$Header: /cvs/stx/stx/libbasic/StringCollection.st,v 1.25 1996-04-25 16:18:04 cg Exp $'
   221 ! !
   224 ! !