Stream.st
changeset 11649 e086e0cb0814
parent 11616 0ca41183ee3e
child 11659 62ff00153390
equal deleted inserted replaced
11648:1d9d6c39b050 11649:e086e0cb0814
   191 chunkSeparator
   191 chunkSeparator
   192     "return the chunk-separation character"
   192     "return the chunk-separation character"
   193 
   193 
   194     ^ ChunkSeparator
   194     ^ ChunkSeparator
   195 ! !
   195 ! !
   196 
       
   197 
   196 
   198 !Stream methodsFor:'accessing'!
   197 !Stream methodsFor:'accessing'!
   199 
   198 
   200 contents
   199 contents
   201     "return the entire contents of the stream
   200     "return the entire contents of the stream
  2781 sync
  2780 sync
  2782     "write out all unbuffered data - ignored here, but added
  2781     "write out all unbuffered data - ignored here, but added
  2783      to make internalStreams protocol compatible with externalStreams"
  2782      to make internalStreams protocol compatible with externalStreams"
  2784 !
  2783 !
  2785 
  2784 
       
  2785 syncData
       
  2786     "write out all unbuffered data - ignored here, but added
       
  2787      to make internalStreams protocol compatible with externalStreams"
       
  2788 !
       
  2789 
  2786 tab
  2790 tab
  2787     "append a tab-character to the stream.
  2791     "append a tab-character to the stream.
  2788      This is only allowed, if the receiver supports writing."
  2792      This is only allowed, if the receiver supports writing."
  2789 
  2793 
  2790     self nextPut:(Character tab)
  2794     self nextPut:(Character tab)
  2905 ! !
  2909 ! !
  2906 
  2910 
  2907 !Stream class methodsFor:'documentation'!
  2911 !Stream class methodsFor:'documentation'!
  2908 
  2912 
  2909 version
  2913 version
  2910     ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.162 2009-03-05 19:13:39 cg Exp $'
  2914     ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.163 2009-03-18 13:46:52 stefan Exp $'
  2911 ! !
  2915 ! !
  2912 
  2916 
  2913 Stream initialize!
  2917 Stream initialize!