StringCollection.st
changeset 3601 c879b9a15f38
parent 1290 15ba3221b89b
child 4007 561d175af944
equal deleted inserted replaced
3600:6c5629eea51d 3601:c879b9a15f38
    91 
    91 
    92 asStringCollection
    92 asStringCollection
    93     "return the receiver as a stringCollection - thats easy"
    93     "return the receiver as a stringCollection - thats easy"
    94 
    94 
    95     ^ self
    95     ^ self
       
    96 !
       
    97 
       
    98 asStringWithoutEmphasis
       
    99     "return myself as a string with embedded cr's, but drop any emphasis"
       
   100 
       
   101     ^ self 
       
   102         asStringWith:Character cr
       
   103         from:1 to:(self size) 
       
   104         compressTabs:false 
       
   105         final:Character cr
       
   106         withEmphasis:false
       
   107 
       
   108     "Created: / 17.6.1998 / 12:32:48 / cg"
    96 !
   109 !
    97 
   110 
    98 from:aString
   111 from:aString
    99     "setup my contents from the argument, aString"
   112     "setup my contents from the argument, aString"
   100 
   113 
   218 ! !
   231 ! !
   219 
   232 
   220 !StringCollection class methodsFor:'documentation'!
   233 !StringCollection class methodsFor:'documentation'!
   221 
   234 
   222 version
   235 version
   223     ^ '$Header: /cvs/stx/stx/libbasic/StringCollection.st,v 1.25 1996-04-25 16:18:04 cg Exp $'
   236     ^ '$Header: /cvs/stx/stx/libbasic/StringCollection.st,v 1.26 1998-06-17 14:24:21 cg Exp $'
   224 ! !
   237 ! !