CharacterEncoderImplementations__ISO8859_16.st
changeset 14191 4107a6a7e79d
parent 8811 b2a78fe1d44f
child 18011 deb0c3355881
equal deleted inserted replaced
14190:ff7329f62449 14191:4107a6a7e79d
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
    14 
    13 
    15 "{ NameSpace: CharacterEncoderImplementations }"
    14 "{ NameSpace: CharacterEncoderImplementations }"
    16 
    15 
    17 SingleByteEncoder subclass:#ISO8859_16
    16 SingleByteEncoder subclass:#ISO8859_16
   360 0xFF    0x00FF  #       LATIN SMALL LETTER Y WITH DIAERESIS
   359 0xFF    0x00FF  #       LATIN SMALL LETTER Y WITH DIAERESIS
   361 
   360 
   362 "
   361 "
   363 ! !
   362 ! !
   364 
   363 
       
   364 !ISO8859_16 class methodsFor:'queries'!
       
   365 
       
   366 userFriendlyNameOfEncoding
       
   367     ^ 'South European with Euro'
       
   368 ! !
       
   369 
   365 !ISO8859_16 methodsFor:'encoding & decoding'!
   370 !ISO8859_16 methodsFor:'encoding & decoding'!
   366 
   371 
   367 decode:codeArg
   372 decode:codeArg
   368     "Automagically generated by generateCode - do not modify.
   373     "Automagically generated by generateCode - do not modify.
   369      Decode from my encoding into unicode."
   374      Decode from my encoding into unicode."
   721 ! !
   726 ! !
   722 
   727 
   723 !ISO8859_16 class methodsFor:'documentation'!
   728 !ISO8859_16 class methodsFor:'documentation'!
   724 
   729 
   725 version
   730 version
   726     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO8859_16.st,v 1.4 2005-03-31 18:12:53 cg Exp $'
   731     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO8859_16.st,v 1.5 2012-07-11 16:43:10 stefan Exp $'
   727 ! !
   732 ! !