ExternalStream.st
changeset 16776 fd62ae0ff6fa
parent 16551 352de37575d7
child 16909 d02e5b66902a
equal deleted inserted replaced
16775:7a313614ae19 16776:fd62ae0ff6fa
  2022 	^ ByteArray
  2022 	^ ByteArray
  2023     ].
  2023     ].
  2024     ^ String
  2024     ^ String
  2025 !
  2025 !
  2026 
  2026 
       
  2027 eolMode
       
  2028     "return how end-of-line (EOL) is to be marked.
       
  2029      Returns one one of:
       
  2030         #crlf         -> add a CR-NL, as in MSDOS
       
  2031         #cr           -> add a CR, as in VMS
       
  2032         #nl           -> add a NL, as in Unix
       
  2033         nil           -> transparent
       
  2034     "
       
  2035 
       
  2036     ^ eolMode 
       
  2037 !
       
  2038 
  2027 eolMode:aSymbolOrNil
  2039 eolMode:aSymbolOrNil
  2028     "specify how end-of-line (EOL) is to be marked.
  2040     "specify how end-of-line (EOL) is to be marked.
  2029      The argument may be one of:
  2041      The argument may be one of:
  2030 	#crlf         -> add a CR-NL, as in MSDOS
  2042 	#crlf         -> add a CR-NL, as in MSDOS
  2031 	#cr           -> add a CR, as in VMS
  2043 	#cr           -> add a CR, as in VMS
  6089 ! !
  6101 ! !
  6090 
  6102 
  6091 !ExternalStream class methodsFor:'documentation'!
  6103 !ExternalStream class methodsFor:'documentation'!
  6092 
  6104 
  6093 version
  6105 version
  6094     ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.393 2014-06-07 15:09:01 cg Exp $'
  6106     ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.394 2014-07-15 09:37:25 cg Exp $'
  6095 !
  6107 !
  6096 
  6108 
  6097 version_CVS
  6109 version_CVS
  6098     ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.393 2014-06-07 15:09:01 cg Exp $'
  6110     ^ '$Header: /cvs/stx/stx/libbasic/ExternalStream.st,v 1.394 2014-07-15 09:37:25 cg Exp $'
  6099 ! !
  6111 ! !
  6100 
  6112 
  6101 
  6113 
  6102 ExternalStream initialize!
  6114 ExternalStream initialize!