Stream.st
changeset 22191 23fe97ec8eb7
parent 22007 a723ccdca167
child 22209 f3a62df156f0
equal deleted inserted replaced
22190:1bb3bfa5212b 22191:23fe97ec8eb7
   217 !Stream class methodsFor:'testing'!
   217 !Stream class methodsFor:'testing'!
   218 
   218 
   219 isAbstract
   219 isAbstract
   220     ^ self == Stream
   220     ^ self == Stream
   221 ! !
   221 ! !
   222 
       
   223 
   222 
   224 !Stream methodsFor:'Compatibility-Dolphin'!
   223 !Stream methodsFor:'Compatibility-Dolphin'!
   225 
   224 
   226 display:someObject
   225 display:someObject
   227     "dolphin compatibility"
   226     "dolphin compatibility"
   510 !
   509 !
   511 
   510 
   512 errorNotOpen
   511 errorNotOpen
   513     "{ Pragma: +optSpace }"
   512     "{ Pragma: +optSpace }"
   514 
   513 
   515     "report an error, that the stream has not been opened"
   514     "report an error, that the stream has not been opened or has been closed"
   516 
   515 
   517     ^ StreamNotOpenError raiseRequestWith:self  "/ in:thisContext sender
   516     ^ StreamNotOpenError raiseRequestWith:self  "/ in:thisContext sender
   518 
   517 
   519     "Modified: / 8.5.1999 / 20:12:33 / cg"
   518     "Modified: / 8.5.1999 / 20:12:33 / cg"
   520 !
   519 !