BIG5EncodedString.st
changeset 229 3b126b43392b
child 231 5d28780c8859
equal deleted inserted replaced
228:9e7e3ffc5800 229:3b126b43392b
       
     1 TwoByteString subclass:#BIG5EncodedString
       
     2 	instanceVariableNames:''
       
     3 	classVariableNames:''
       
     4 	poolDictionaries:''
       
     5 	category:'Collections-Text'
       
     6 !
       
     7 
       
     8 !BIG5EncodedString class methodsFor:'documentation'!
       
     9 
       
    10 documentation
       
    11 "
       
    12     BIG5EncodedString represents 16bit strings encoded in BIG-5.
       
    13     BIG-5 is a popular hanzi code used in Taiwan.
       
    14     Most of you are probably not interrested in those ...
       
    15 "
       
    16 
       
    17 
       
    18 ! !
       
    19 
       
    20 !BIG5EncodedString methodsFor:'queries'!
       
    21 
       
    22 encoding
       
    23     ^ #big5
       
    24 
       
    25     "Created: 17.4.1996 / 15:41:15 / cg"
       
    26 ! !
       
    27 
       
    28 !BIG5EncodedString class methodsFor:'documentation'!
       
    29 
       
    30 version
       
    31     ^ '$Header: /cvs/stx/stx/libbasic2/BIG5EncodedString.st,v 1.1 1996-04-17 16:51:29 cg Exp $'
       
    32 ! !