CharacterEncoderImplementations__ISO8859_16.st
changeset 8114 05274a80fcc4
parent 8082 be629521cbae
child 8148 dbf64e3142d9
equal deleted inserted replaced
8113:4023585d148d 8114:05274a80fcc4
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "{ Package: 'stx:libbasic' }"
     1 "{ Package: 'stx:libbasic' }"
     4 
     2 
     5 "{ NameSpace: CharacterEncoderImplementations }"
     3 "{ NameSpace: CharacterEncoderImplementations }"
     6 
     4 
     7 SingleByteEncoder subclass:#ISO8859_16
     5 SingleByteEncoder subclass:#ISO8859_16
   323 0xFF    0x00FF  #       LATIN SMALL LETTER Y WITH DIAERESIS
   321 0xFF    0x00FF  #       LATIN SMALL LETTER Y WITH DIAERESIS
   324 
   322 
   325 "
   323 "
   326 ! !
   324 ! !
   327 
   325 
   328 !ISO8859_16 class methodsFor:'queries'!
       
   329 
       
   330 namesOfEncoding
       
   331     ^ #( 'iso8859-16' 'iso-8859-16' 'latin10' 'latin-10' )
       
   332 ! !
       
   333 
       
   334 !ISO8859_16 methodsFor:'encoding & decoding'!
   326 !ISO8859_16 methodsFor:'encoding & decoding'!
   335 
   327 
   336 decode:codeArg
   328 decode:codeArg
   337     "Automagically generated by generateCode - do not modify.
   329     "Automagically generated by generateCode - do not modify.
   338      Decode from my encoding into unicode."
   330      Decode from my encoding into unicode."
   690 ! !
   682 ! !
   691 
   683 
   692 !ISO8859_16 class methodsFor:'documentation'!
   684 !ISO8859_16 class methodsFor:'documentation'!
   693 
   685 
   694 version
   686 version
   695     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO8859_16.st,v 1.1 2004-03-05 17:29:35 cg Exp $'
   687     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO8859_16.st,v 1.2 2004-03-08 17:09:02 cg Exp $'
   696 ! !
   688 ! !