JISString.st
changeset 260 427397326fac
parent 253 09aefd01f021
child 262 1d0e8b654573
equal deleted inserted replaced
259:6d36f3ac42a2 260:427397326fac
    49 
    49 
    50     'hello world' decodeFrom:#jis7
    50     'hello world' decodeFrom:#jis7
    51 
    51 
    52     <someStringWithJIS7Escapes> decodeFrom:#jis7
    52     <someStringWithJIS7Escapes> decodeFrom:#jis7
    53 "
    53 "
       
    54 ! !
       
    55 
       
    56 !JISEncodedString class methodsFor:'initialization'!
       
    57 
       
    58 initialize
       
    59     "initialize the class - private"
       
    60 
       
    61     self flags:(Behavior flagWords)
       
    62 
       
    63     "
       
    64      JISEncodedString initialize
       
    65     "
       
    66 
       
    67     "Created: 27.4.1996 / 13:12:02 / cg"
    54 ! !
    68 ! !
    55 
    69 
    56 !JISEncodedString class methodsFor:'code tables'!
    70 !JISEncodedString class methodsFor:'code tables'!
    57 
    71 
    58 romanJISDecoderTable
    72 romanJISDecoderTable
   125 ! !
   139 ! !
   126 
   140 
   127 !JISEncodedString class methodsFor:'documentation'!
   141 !JISEncodedString class methodsFor:'documentation'!
   128 
   142 
   129 version
   143 version
   130     ^ '$Header: /cvs/stx/stx/libbasic2/Attic/JISString.st,v 1.8 1996-04-25 16:11:42 cg Exp $'
   144     ^ '$Header: /cvs/stx/stx/libbasic2/Attic/JISString.st,v 1.9 1996-04-27 11:13:12 cg Exp $'
   131 ! !
   145 ! !
       
   146 JISEncodedString initialize!