CharacterEncoderImplementations__ISO10646_1.st
author Stefan Vogel <sv@exept.de>
Fri, 19 Jan 2018 14:41:53 +0100
changeset 22471 1359d953a751
parent 21297 1f1d63e46f28
child 22484 01054cf48fde
permissions -rw-r--r--
#REFACTORING by stefan class: CharacterEncoderImplementations::ISO10646_1 class definition removed: #decode: #decodeString: #encode: #encodeString: changed: #characterSize: class: CharacterEncoderImplementations::ISO10646_1 class comment/format in: #documentation Refactor inheritance. Provide #characterSize: for all private classes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22471
1359d953a751 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21297
diff changeset
     1
"{ Encoding: utf8 }"
1359d953a751 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21297
diff changeset
     2
8148
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     3
"
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     4
 COPYRIGHT (c) 2004 by eXept Software AG
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     5
              All Rights Reserved
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     6
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     7
 This software is furnished under a license and may be used
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     8
 only in accordance with the terms of that license and with the
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    10
 be provided or otherwise made available to, or used by, any
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    11
 other person.  No title to or ownership of the software is
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    12
 hereby transferred.
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    13
"
8079
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libbasic' }"
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
"{ NameSpace: CharacterEncoderImplementations }"
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
22471
1359d953a751 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21297
diff changeset
    18
CharacterEncoder::NullEncoder subclass:#ISO10646_1
8079
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:''
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	category:'Collections-Text-Encodings'
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
8148
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    25
!ISO10646_1 class methodsFor:'documentation'!
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    26
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    27
copyright
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    28
"
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    29
 COPYRIGHT (c) 2004 by eXept Software AG
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    30
              All Rights Reserved
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    31
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    32
 This software is furnished under a license and may be used
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    33
 only in accordance with the terms of that license and with the
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    35
 be provided or otherwise made available to, or used by, any
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    36
 other person.  No title to or ownership of the software is
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    37
 hereby transferred.
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    38
"
21297
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    39
!
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    40
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    41
documentation
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    42
"
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    43
    I am a dummy encoder for Unicode.
22471
1359d953a751 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21297
diff changeset
    44
    Dummy, because that is the standard encoding inside ST/X anyway
21297
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    45
"
8148
dbf64e3142d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8118
diff changeset
    46
! !
8079
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!ISO10646_1 class methodsFor:'queries'!
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
userFriendlyNameOfEncoding
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    ^ 'Unicode'
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
! !
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!ISO10646_1 class methodsFor:'documentation'!
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
version
21297
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    57
    ^ '$Header$'
8079
0c51c515c6b6 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
! !
21297
1f1d63e46f28 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
    59