JISEncodedString.st
changeset 1420 3cdb0bb41576
parent 1417 b75a9128f73e
child 1421 56012c7b8a0b
equal deleted inserted replaced
1419:cde809955208 1420:3cdb0bb41576
   195 
   195 
   196 jis7KanjiEscapeSequence
   196 jis7KanjiEscapeSequence
   197     "return the escape sequence used to switch to kanji in jis7 encoded strings.
   197     "return the escape sequence used to switch to kanji in jis7 encoded strings.
   198      This happens to be the same as ISO2022-JP's escape sequence."
   198      This happens to be the same as ISO2022-JP's escape sequence."
   199 
   199 
   200     ^ CharacterEncoder::JIS0208_to_JIS7 jis7KanjiEscapeSequence.
   200     ^ CharacterEncoderImplementations::JIS0208_to_JIS7 jis7KanjiEscapeSequence.
   201 
   201 
   202     "Created: 26.2.1996 / 17:38:08 / cg"
   202     "Created: 26.2.1996 / 17:38:08 / cg"
   203     "Modified: 30.6.1997 / 16:03:16 / cg"
   203     "Modified: 30.6.1997 / 16:03:16 / cg"
   204 !
   204 !
   205 
   205 
   206 jis7RomanEscapeSequence
   206 jis7RomanEscapeSequence
   207     "return the escape sequence used to switch to roman in jis7 encoded strings"
   207     "return the escape sequence used to switch to roman in jis7 encoded strings"
   208 
   208 
   209     ^ CharacterEncoder::JIS0208_to_JIS7 jis7RomanEscapeSequence.
   209     ^ CharacterEncoderImplementations::JIS0208_to_JIS7 jis7RomanEscapeSequence.
   210 
   210 
   211     "Created: 26.2.1996 / 17:38:03 / cg"
   211     "Created: 26.2.1996 / 17:38:03 / cg"
   212     "Modified: 22.4.1996 / 16:08:42 / cg"
   212     "Modified: 22.4.1996 / 16:08:42 / cg"
   213 !
   213 !
   214 
   214 
   215 jisISO2022EscapeSequence
   215 jisISO2022EscapeSequence
   216     "return the escape sequence used to switch to kanji in iso2022 encoded strings"
   216     "return the escape sequence used to switch to kanji in iso2022 encoded strings"
   217 
   217 
   218     ^ CharacterEncoder::JIS0208_to_JIS7 jisISO2022EscapeSequence
   218     ^ CharacterEncoderImplementations::JIS0208_to_JIS7 jisISO2022EscapeSequence
   219 
   219 
   220     "Created: 30.6.1997 / 16:02:34 / cg"
   220     "Created: 30.6.1997 / 16:02:34 / cg"
   221 !
   221 !
   222 
   222 
   223 oldJis7KanjiEscapeSequence
   223 oldJis7KanjiEscapeSequence
   224     "return the escape sequence used to switch to kanji in old jis7 encoded strings"
   224     "return the escape sequence used to switch to kanji in old jis7 encoded strings"
   225 
   225 
   226     ^ CharacterEncoder::JIS0208_to_JIS7 jis7KanjiOldEscapeSequence.
   226     ^ CharacterEncoderImplementations::JIS0208_to_JIS7 jis7KanjiOldEscapeSequence.
   227 ! !
   227 ! !
   228 
   228 
   229 !JISEncodedString methodsFor:'queries'!
   229 !JISEncodedString methodsFor:'queries'!
   230 
   230 
   231 encoding
   231 encoding
   238 ! !
   238 ! !
   239 
   239 
   240 !JISEncodedString class methodsFor:'documentation'!
   240 !JISEncodedString class methodsFor:'documentation'!
   241 
   241 
   242 version
   242 version
   243     ^ '$Header: /cvs/stx/stx/libbasic2/JISEncodedString.st,v 1.21 2004-03-05 19:06:35 stefan Exp $'
   243     ^ '$Header: /cvs/stx/stx/libbasic2/JISEncodedString.st,v 1.22 2004-03-08 23:27:24 cg Exp $'
   244 ! !
   244 ! !
   245 
   245 
   246 JISEncodedString initialize!
   246 JISEncodedString initialize!