BIG5String.st
changeset 260 427397326fac
parent 240 7af04274190d
child 261 2fd450dd712f
equal deleted inserted replaced
259:6d36f3ac42a2 260:427397326fac
    13     BIG-5 is a popular hanzi code used in Taiwan.
    13     BIG-5 is a popular hanzi code used in Taiwan.
    14     Most of you are probably not interrested in those ...
    14     Most of you are probably not interrested in those ...
    15 "
    15 "
    16 
    16 
    17 
    17 
       
    18 ! !
       
    19 
       
    20 !BIG5EncodedString class methodsFor:'initialization'!
       
    21 
       
    22 initialize
       
    23     "initialize the class - private"
       
    24 
       
    25     self flags:(Behavior flagWords)
       
    26 
       
    27     "
       
    28      BIG5EncodedString initialize
       
    29     "
       
    30 
       
    31     "Created: 27.4.1996 / 13:12:30 / cg"
    18 ! !
    32 ! !
    19 
    33 
    20 !BIG5EncodedString class methodsFor:'code tables'!
    34 !BIG5EncodedString class methodsFor:'code tables'!
    21 
    35 
    22 romanBIG5DecoderTable
    36 romanBIG5DecoderTable
    73 ! !
    87 ! !
    74 
    88 
    75 !BIG5EncodedString class methodsFor:'documentation'!
    89 !BIG5EncodedString class methodsFor:'documentation'!
    76 
    90 
    77 version
    91 version
    78     ^ '$Header: /cvs/stx/stx/libbasic2/Attic/BIG5String.st,v 1.3 1996-04-20 21:16:33 cg Exp $'
    92     ^ '$Header: /cvs/stx/stx/libbasic2/Attic/BIG5String.st,v 1.4 1996-04-27 11:12:54 cg Exp $'
    79 ! !
    93 ! !
       
    94 BIG5EncodedString initialize!