EncodedStream.st
changeset 8148 dbf64e3142d9
parent 8147 416bcaa573ef
child 8165 d6446fc1ea3b
equal deleted inserted replaced
8147:416bcaa573ef 8148:dbf64e3142d9
       
     1 "
       
     2  COPYRIGHT (c) 2004 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
     1 "{ Package: 'stx:libbasic' }"
    13 "{ Package: 'stx:libbasic' }"
     2 
    14 
     3 Stream subclass:#EncodedStream
    15 Stream subclass:#EncodedStream
     4 	instanceVariableNames:'encoder stream'
    16 	instanceVariableNames:'encoder stream'
     5 	classVariableNames:''
    17 	classVariableNames:''
     6 	poolDictionaries:''
    18 	poolDictionaries:''
     7 	category:'Collections-Text-Encodings'
    19 	category:'Collections-Text-Encodings'
     8 !
    20 !
     9 
    21 
       
    22 !EncodedStream class methodsFor:'documentation'!
       
    23 
       
    24 copyright
       
    25 "
       
    26  COPYRIGHT (c) 2004 by eXept Software AG
       
    27               All Rights Reserved
       
    28 
       
    29  This software is furnished under a license and may be used
       
    30  only in accordance with the terms of that license and with the
       
    31  inclusion of the above copyright notice.   This software may not
       
    32  be provided or otherwise made available to, or used by, any
       
    33  other person.  No title to or ownership of the software is
       
    34  hereby transferred.
       
    35 "
       
    36 ! !
    10 
    37 
    11 !EncodedStream class methodsFor:'instance creation'!
    38 !EncodedStream class methodsFor:'instance creation'!
    12 
    39 
    13 stream:streamArg encoder:encoder
    40 stream:streamArg encoder:encoder
    14     ^ (self basicNew) stream:streamArg; encoder:encoder
    41     ^ (self basicNew) stream:streamArg; encoder:encoder
    51 ! !
    78 ! !
    52 
    79 
    53 !EncodedStream class methodsFor:'documentation'!
    80 !EncodedStream class methodsFor:'documentation'!
    54 
    81 
    55 version
    82 version
    56     ^ '$Header: /cvs/stx/stx/libbasic/EncodedStream.st,v 1.2 2004-03-09 21:52:03 cg Exp $'
    83     ^ '$Header: /cvs/stx/stx/libbasic/EncodedStream.st,v 1.3 2004-03-09 21:57:33 cg Exp $'
    57 ! !
    84 ! !