CharacterArray.st
changeset 13079 111e7e456648
parent 13073 19261a5b4430
child 13137 c31e493cb3ca
equal deleted inserted replaced
13078:7934a86b395b 13079:111e7e456648
  4332 	^ self
  4332 	^ self
  4333     ].
  4333     ].
  4334     ^ super displayOn:aGCOrStream
  4334     ^ super displayOn:aGCOrStream
  4335 !
  4335 !
  4336 
  4336 
  4337 displayString
       
  4338     "return a string to display the receiver in a view (inspector).
       
  4339      Here, we use storeString to have quotes around."
       
  4340 
       
  4341     ^ self storeString
       
  4342 
       
  4343     "
       
  4344      'foo' displayString
       
  4345     "
       
  4346 !
       
  4347 
       
  4348 printOn:aStream
  4337 printOn:aStream
  4349     "print the receiver on aStream"
  4338     "print the receiver on aStream"
  4350 
  4339 
  4351     aStream nextPutAll:self
  4340     aStream nextPutAll:self
  4352 !
  4341 !
  4353 
  4342 
  4354 printString
  4343 printString
  4355     "return a string for printing - thats myself"
  4344     "return a string for printing - that's myself"
  4356 
  4345 
  4357     ^ self
  4346     ^ self
  4358 !
  4347 !
  4359 
  4348 
  4360 printWithQuotesDoubledOn:aStream
  4349 printWithQuotesDoubledOn:aStream
  5823 ! !
  5812 ! !
  5824 
  5813 
  5825 !CharacterArray class methodsFor:'documentation'!
  5814 !CharacterArray class methodsFor:'documentation'!
  5826 
  5815 
  5827 version
  5816 version
  5828     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.439 2010-09-20 19:43:31 cg Exp $'
  5817     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.440 2010-09-21 06:58:24 stefan Exp $'
  5829 !
  5818 !
  5830 
  5819 
  5831 version_CVS
  5820 version_CVS
  5832     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.439 2010-09-20 19:43:31 cg Exp $'
  5821     ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.440 2010-09-21 06:58:24 stefan Exp $'
  5833 ! !
  5822 ! !
  5834 
  5823 
  5835 CharacterArray initialize!
  5824 CharacterArray initialize!