CharacterEncoderImplementations__ISO8859_15.st
changeset 8114 05274a80fcc4
parent 8081 b468050174a9
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_15
     5 SingleByteEncoder subclass:#ISO8859_15
   327 
   325 
   328 
   326 
   329 "
   327 "
   330 ! !
   328 ! !
   331 
   329 
   332 !ISO8859_15 class methodsFor:'queries'!
       
   333 
       
   334 namesOfEncoding
       
   335     ^ #( 'iso8859-15' 'iso-8859-15' 'latin9' 'latin-9' 'iso-ir-203')
       
   336 ! !
       
   337 
       
   338 !ISO8859_15 methodsFor:'encoding & decoding'!
   330 !ISO8859_15 methodsFor:'encoding & decoding'!
   339 
   331 
   340 decode:codeArg
   332 decode:codeArg
   341     "Automagically generated by generateCode - do not modify.
   333     "Automagically generated by generateCode - do not modify.
   342      Decode from my encoding into unicode."
   334      Decode from my encoding into unicode."
   606 ! !
   598 ! !
   607 
   599 
   608 !ISO8859_15 class methodsFor:'documentation'!
   600 !ISO8859_15 class methodsFor:'documentation'!
   609 
   601 
   610 version
   602 version
   611     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO8859_15.st,v 1.1 2004-03-05 17:22:33 cg Exp $'
   603     ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO8859_15.st,v 1.2 2004-03-08 17:09:38 cg Exp $'
   612 ! !
   604 ! !