stx_libbasic.st
author Claus Gittinger <cg@exept.de>
Tue, 24 Jan 2012 17:20:01 +0100
changeset 13980 c7b96c968e63
parent 13966 36da0e47ac1e
child 13982 f97c2ec04bde
permissions -rw-r--r--
automatic checkIn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9811
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     1
"
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
13439
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
     3
	      All Rights Reserved
9811
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     4
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     5
 This software is furnished under a license and may be used
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     6
 only in accordance with the terms of that license and with the
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     8
 be provided or otherwise made available to, or used by, any
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     9
 other person.  No title to or ownership of the software is
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    10
 hereby transferred.
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    11
"
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libbasic
13439
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    15
	instanceVariableNames:''
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    16
	classVariableNames:''
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    17
	poolDictionaries:''
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    18
	category:'* Projects & Packages *'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
9811
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    21
!stx_libbasic class methodsFor:'documentation'!
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    22
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    23
copyright
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    24
"
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
13439
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    26
	      All Rights Reserved
9811
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    27
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    28
 This software is furnished under a license and may be used
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    29
 only in accordance with the terms of that license and with the
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    31
 be provided or otherwise made available to, or used by, any
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    32
 other person.  No title to or ownership of the software is
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    33
 hereby transferred.
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    34
"
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    35
!
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    36
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    37
documentation
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    38
"
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    39
    Build-Information for creation of the st/x standard library: stx_libbasic
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    40
    This library contains basic (nonGUI) classes.
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    41
"
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    42
! !
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libbasic class methodsFor:'description'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
10573
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    46
excludedFromPreRequisites
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    47
    "list all packages which should be ignored in the automatic
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    48
     preRequisites scan. See #preRequisites for more."
10573
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    49
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    50
    ^ #(
13439
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    51
	#'stx:goodies/sunit'    "TestResource - referenced by ProjectDefinition class>>additionalClassAttributesFor: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    52
	#'stx:libsvn'           "SVN::InfoCommand - referenced by ProjectDefinition class>>svnRevision "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    53
	#'stx:goodies'    "Complex - referenced by Number>>asComplex "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    54
	#'stx:goodies/simpleServices'    "STXScriptingServer - referenced by StandaloneStartup class>>setupSmalltalkFromArguments: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    55
	#'stx:goodies/soap/xe'    "SOAP::XePName - referenced by Date class>>sprayTypeName "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    56
	#'stx:goodies/xml/stx'    "XMLCoder - referenced by ClassDescription>>fileOutXMLString:on: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    57
	#'stx:goodies/xml/vw'    "XML::XMLParser - referenced by PeekableStream>>fileInXMLNotifying:passChunk: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    58
	#'stx:libbasic2'    "Future - referenced by Block>>futureValue "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    59
	#'stx:libbasic3'    "MessageTracer - referenced by CompiledCode>>setTraceFullPoint "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    60
	#'stx:libboss'    "BinaryObjectStorage - referenced by Smalltalk class>>fileIn:lazy:silent:logged: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    61
	#'stx:libcomp'    "SyntaxHighlighter - referenced by SmalltalkLanguage>>syntaxHighlighterClass "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    62
	#'stx:libcompat'    "StringCollationPolicy - referenced by SequenceableCollection>>quickSort: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    63
	#'stx:libhtml'    "URL - referenced by CharacterArray>>asURL "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    64
	#'stx:libtool'    "DiffTextView - referenced by UserPreferences>>versionDiffViewerClass "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    65
	#'stx:libview'    "ResourcePack - referenced by Date class>>initNames "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    66
	#'stx:libview2'    "LayoutOrigin - referenced by Point>>asOffsetLayout "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    67
	#'stx:libwidg'    "PullDownMenu - referenced by UserPreferences class>>saveSettings:in: "
cf331e8bca08 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 13438
diff changeset
    68
	#'stx:libwidg2'    "DoWhatIMeanSupport - referenced by Smalltalk class>>globalnameCompletion: "
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    69
    )
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
    70
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
    71
    "Modified: / 13-02-2010 / 19:35:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    72
!
10526
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    73
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    74
preRequisites
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    75
    "list all required packages.
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    76
     This list can be maintained manually or (better) generated and
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    77
     updated by scanning the superclass hierarchies and looking for
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    78
     global variable accesses. (the browser has a menu function for that)
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    79
     Howevery, often too much is found, and you may want to explicitely
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    80
     exclude individual packages in the #excludedFromPrerequisites method."
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    81
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    82
    ^ #(
10526
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    83
    )
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
!stx_libbasic class methodsFor:'description - compilation'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    88
additionalBaseAddressDefinition_bc_dot_mak
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    89
    "this is an optional definition, which (if present) may speed up the dll-loading a little
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    90
     on win32 systems."
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    91
9772
86c8ca2f7540 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9766
diff changeset
    92
    ^ '
10307
19562e7dd549 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 10247
diff changeset
    93
# see stdHeader_bc for LIBBASIC_BASE
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    94
LIB_BASE=$(LIBBASIC_BASE)
9772
86c8ca2f7540 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9766
diff changeset
    95
'
9752
c6fe4bd58bc2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9740
diff changeset
    96
!
c6fe4bd58bc2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9740
diff changeset
    97
9828
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
    98
localIncludes
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
    99
    ^ '-I$(TOP)/librun'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
9828
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
   101
    "Created: / 06-09-2006 / 18:18:06 / cg"
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
stcOptimizationOptions
9720
09649246c44e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9711
diff changeset
   105
    ^ '+optinline +optinline2'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    "Created: / 23-08-2006 / 11:06:17 / cg"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   110
!stx_libbasic class methodsFor:'description - contents'!
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   111
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   112
classNamesAndAttributes
12448
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   113
    "lists the classes which are to be included in the project.
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   114
     Each entry in the list may be: a single class-name (symbol),
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   115
     or an array-literal consisting of class name and attributes.
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   116
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   117
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   118
    ^ #(
13835
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   119
        "<className> or (<className> attributes...) in load order"
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   120
        Autoload
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   121
        Object
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   122
        ProtoObject
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   123
        (AbstractDesktop autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   124
        AbstractOperatingSystem
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   125
        AbstractSourceFileReader
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   126
        Annotation
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   127
        (BadRomanNumberFormatError autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   128
        Behavior
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   129
        Boolean
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   130
        CharacterEncoder
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   131
        (#'CharacterEncoderImplementations::BIG5' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   132
        (#'CharacterEncoderImplementations::CNS11643' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   133
        (#'CharacterEncoderImplementations::CP437' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   134
        (#'CharacterEncoderImplementations::GB2313_1980' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   135
        (#'CharacterEncoderImplementations::HANGUL' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   136
        (#'CharacterEncoderImplementations::ISO10646_to_JavaText' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   137
        (#'CharacterEncoderImplementations::ISO10646_to_SGML' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   138
        (#'CharacterEncoderImplementations::ISO10646_to_UTF16BE' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   139
        (#'CharacterEncoderImplementations::ISO10646_to_UTF16LE' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   140
        (#'CharacterEncoderImplementations::ISO8859_10' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   141
        (#'CharacterEncoderImplementations::ISO8859_11' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   142
        (#'CharacterEncoderImplementations::ISO8859_13' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   143
        (#'CharacterEncoderImplementations::ISO8859_14' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   144
        (#'CharacterEncoderImplementations::ISO8859_16' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   145
        (#'CharacterEncoderImplementations::ISO8859_3' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   146
        (#'CharacterEncoderImplementations::ISO8859_4' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   147
        (#'CharacterEncoderImplementations::ISO8859_6' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   148
        (#'CharacterEncoderImplementations::ISO8859_8' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   149
        (#'CharacterEncoderImplementations::ISO8859_9' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   150
        (#'CharacterEncoderImplementations::JIS0201' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   151
        (#'CharacterEncoderImplementations::JIS0208' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   152
        (#'CharacterEncoderImplementations::JIS0208_to_EUC' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   153
        (#'CharacterEncoderImplementations::JIS0208_to_JIS7' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   154
        (#'CharacterEncoderImplementations::JIS0212' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   155
        (#'CharacterEncoderImplementations::JOHAB' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   156
        (#'CharacterEncoderImplementations::KOI7' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   157
        (#'CharacterEncoderImplementations::KOI8_R' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   158
        (#'CharacterEncoderImplementations::KOI8_U' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   159
        (#'CharacterEncoderImplementations::KSC5601' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   160
        (#'CharacterEncoderImplementations::MAC_Arabic' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   161
        (#'CharacterEncoderImplementations::MAC_CentralEuropean' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   162
        (#'CharacterEncoderImplementations::MAC_Croatian' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   163
        (#'CharacterEncoderImplementations::MAC_Cyrillic' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   164
        (#'CharacterEncoderImplementations::MAC_Dingbats' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   165
        (#'CharacterEncoderImplementations::MAC_Farsi' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   166
        (#'CharacterEncoderImplementations::MAC_Greek' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   167
        (#'CharacterEncoderImplementations::MAC_Hebrew' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   168
        (#'CharacterEncoderImplementations::MAC_Iceland' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   169
        (#'CharacterEncoderImplementations::MAC_Japanese' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   170
        (#'CharacterEncoderImplementations::MAC_Korean' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   171
        (#'CharacterEncoderImplementations::MAC_Roman' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   172
        (#'CharacterEncoderImplementations::MAC_Romanian' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   173
        (#'CharacterEncoderImplementations::MAC_Symbol' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   174
        (#'CharacterEncoderImplementations::MAC_Thai' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   175
        (#'CharacterEncoderImplementations::MAC_Turkish' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   176
        (#'CharacterEncoderImplementations::MS_Arabic' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   177
        (#'CharacterEncoderImplementations::MS_EastEuropean' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   178
        (#'CharacterEncoderImplementations::MS_Hebrew' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   179
        (#'CharacterEncoderImplementations::MS_Symbol' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   180
        (#'CharacterEncoderImplementations::MS_Turkish' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   181
        (#'CharacterEncoderImplementations::NEXT' autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   182
        ClassBuilder
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   183
        ClassCategoryReader
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   184
        (CmdLineOption autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   185
        (CmdLineOptionError autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   186
        (CmdLineParser autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   187
        (CmdLineParserTest autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   188
        Collection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   189
        Context
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   190
        Continuation
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   191
        Delay
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   192
        ExecutableFunction
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   193
        ExternalAddress
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   194
        ExternalLibrary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   195
        Filename
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   196
        (GNOMEDesktop autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   197
        GenericException
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   198
        Geometric
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   199
        (ImaginaryResultError autoload)
13980
c7b96c968e63 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13966
diff changeset
   200
        Infinity
13835
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   201
        InlineObject
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   202
        InterestConverter
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   203
        (LargeFloat autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   204
        Link
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   205
        Lookup
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   206
        (MacFilename macos autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   207
        Magnitude
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   208
        (MappedExternalBytes autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   209
        Message
13980
c7b96c968e63 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13966
diff changeset
   210
        MetaNumber
13835
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   211
        (MethodOverrideTests autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   212
        MiniDebugger
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   213
        MiniInspector
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   214
        (NaiveRomanNumberFormatNotification autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   215
        NameSpace
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   216
        (NotANumber autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   217
        (NumberConversionError autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   218
        (NumberFormatError autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   219
        OSErrorHolder
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   220
        OSProcess
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   221
        ObjectMemory
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   222
        (OpenVMSFileHandle vms autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   223
        (OpenVMSFilename vms autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   224
        (OpenVMSOperatingSystem vms autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   225
        PackageId
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   226
        ProcessorScheduler
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   227
        ProgrammingLanguage
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   228
        Project
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   229
        ProjectDefinition
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   230
        (QualifiedName autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   231
        ReadEvalPrintLoop
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   232
        RecursionLock
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   233
        Registry
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   234
        (RomanNumberFormatError autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   235
        Semaphore
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   236
        SharedPool
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   237
        Signal
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   238
        Smalltalk
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   239
        (SmalltalkDesktop autoload)
13980
c7b96c968e63 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13966
diff changeset
   240
        SomeNumber 
13835
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   241
        StandaloneStartup
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   242
        Stream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   243
        SystemChangeNotifier
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   244
        (SystemNotification autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   245
        (TextCollectorStream autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   246
        (UnboundedExternalStream autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   247
        UndefinedObject
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   248
        (UnixDesktop autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   249
        UserMessage
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   250
        Visitor
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   251
        (WeakValueIdentityDictionary autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   252
        (Win32Process win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   253
        (WindowsDesktop autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   254
        (XDGDesktop autoload)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   255
        AbstractTime
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   256
        ApplicationDefinition
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   257
        ArithmeticValue
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   258
        AspectVisitor
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   259
        AutoDeletedFilename
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   260
        Bag
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   261
        BlockContext
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   262
        BuiltinLookup
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   263
        CachingRegistry
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   264
        Character
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   265
        #'CharacterEncoderImplementations::ISO10646_1'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   266
        #'CharacterEncoderImplementations::SingleByteEncoder'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   267
        #'CharacterEncoderImplementations::TwoByteEncoder'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   268
        CompiledCode
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   269
        ControlInterrupt
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   270
        Date
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   271
        Exception
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   272
        ExternalFunction
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   273
        False
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   274
        HandleRegistry
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   275
        HashStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   276
        InlineObjectPrototype
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   277
        KeyedCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   278
        LibraryDefinition
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   279
        LookupKey
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   280
        MessageSend
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   281
        NamespaceAwareLookup
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   282
        NoHandlerError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   283
        Notification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   284
        OSHandle
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   285
        (PCFilename win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   286
        PeekableStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   287
        Process
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   288
        QuerySignal
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   289
        PluginSupport
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   290
        Rectangle
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   291
        SequenceableCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   292
        Set
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   293
        SmalltalkChunkFileSourceReader
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   294
        SmalltalkLanguage
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   295
        True
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   296
        UnixFilename
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   297
        WeakInterestConverter
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   298
        ArrayedCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   299
        AbstractNumberVector
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   300
        Association
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   301
        Block
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   302
        #'CharacterEncoderImplementations::ASCII'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   303
        #'CharacterEncoderImplementations::ISO10646_to_UTF8'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   304
        #'CharacterEncoderImplementations::ISO8859_1'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   305
        #'CharacterEncoderImplementations::ISO8859_15'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   306
        #'CharacterEncoderImplementations::ISO8859_2'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   307
        #'CharacterEncoderImplementations::ISO8859_5'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   308
        #'CharacterEncoderImplementations::ISO8859_7'
13966
36da0e47ac1e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13835
diff changeset
   309
        (#'CharacterEncoderImplementations::JIS0208_to_SJIS' autoload)
13835
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   310
        #'CharacterEncoderImplementations::MS_Ansi'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   311
        (#'CharacterEncoderImplementations::MS_Baltic' win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   312
        (#'CharacterEncoderImplementations::MS_Cyrillic' win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   313
        (#'CharacterEncoderImplementations::MS_Greek' win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   314
        ClassDescription
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   315
        ControlRequest
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   316
        Dictionary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   317
        EncodedStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   318
        EndOfStreamNotification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   319
        Error
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   320
        ExternalFunctionCallback
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   321
        ExternalLibraryFunction
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   322
        HaltInterrupt
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   323
        IdentitySet
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   324
        LinkedList
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   325
        MD5Stream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   326
        Method
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   327
        MethodDictionary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   328
        Number
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   329
        OSFileHandle
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   330
        ObjectCoder
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   331
        OrderedCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   332
        Point
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   333
        PositionableStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   334
        Query
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   335
        ReadOnlySequenceableCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   336
        RecursiveStoreError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   337
        SHA1Stream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   338
        Time
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   339
        TimeoutNotification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   340
        Timestamp
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   341
        UserInterrupt
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   342
        UserNotification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   343
        YesToAllConfirmation
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   344
        #'stx_libbasic'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   345
        AbortAllOperationRequest
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   346
        AbstractSourceFileWriter
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   347
        ActivityNotification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   348
        Array
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   349
        BreakPointInterrupt
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   350
        CheapBlock
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   351
        Class
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   352
        ClassBuildError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   353
        DoubleArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   354
        ElementBoundsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   355
        FileDirectory
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   356
        FloatArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   357
        Fraction
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   358
        IdentityDictionary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   359
        InlineObjectClassDescription
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   360
        Integer
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   361
        Interval
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   362
        LimitedPrecisionReal
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   363
        MeasurementValue
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   364
        Metaclass
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   365
        OsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   366
        ProceedableError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   367
        QueryWithoutDefault
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   368
        ReadStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   369
        RecursionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   370
        RecursiveExceptionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   371
        RestartProcessRequest
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   372
        SemaphoreSet
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   373
        SignalSet
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   374
        SnapshotError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   375
        SortedCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   376
        StringCollection
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   377
        TerminateProcessRequest
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   378
        UninterpretedBytes
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   379
        (UnixFileDescriptorHandle unix)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   380
        (UnixFileHandle unix)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   381
        (UnixOperatingSystem unix)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   382
        UserConfirmation
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   383
        UserInformation
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   384
        VMInternalError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   385
        VarArgBlock
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   386
        Warning
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   387
        (Win32Handle win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   388
        WeakArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   389
        WeakIdentitySet
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   390
        WeakValueDictionary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   391
        (Win32FILEHandle win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   392
        WriteStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   393
        AbortOperationRequest
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   394
        AllocationFailure
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   395
        AmbiguousMessage
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   396
        ArithmeticError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   397
        AssertionFailedError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   398
        AutoloadMetaclass
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   399
        ByteArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   400
        CharacterWriteStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   401
        ContextError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   402
        ConversionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   403
        DeepCopyError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   404
        ExceptionHandlerSet
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   405
        ExecutionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   406
        ExternalBytes
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   407
        FixedPoint
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   408
        Float
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   409
        GetOpt
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   410
        ImmutableArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   411
        LargeInteger
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   412
        LongFloat
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   413
        MessageNotUnderstood
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   414
        NoModificationError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   415
        NotFoundError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   416
        OSSignalInterrupt
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   417
        OsIllegalOperation
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   418
        OsInaccessibleError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   419
        OsInvalidArgumentsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   420
        OsNeedRetryError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   421
        OsNoResourcesError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   422
        OsNotification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   423
        OsTransferFaultError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   424
        PrivateMetaclass
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   425
        ProceedError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   426
        ReadWriteStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   427
        ShortFloat
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   428
        SignalError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   429
        SmallInteger
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   430
        SmalltalkChunkFileSourceWriter
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   431
        StreamError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   432
        SubclassResponsibilityError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   433
        TimeoutError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   434
        UnimplementedFunctionalityError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   435
        UserPreferences
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   436
        VarArgCheapBlock
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   437
        WeakIdentityDictionary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   438
        ArgumentError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   439
        CannotResumeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   440
        CannotReturnError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   441
        CharacterArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   442
        CharacterEncoderError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   443
        DateConversionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   444
        DomainError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   445
        EndOfStreamError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   446
        ExternalStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   447
        ExternalStructure
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   448
        ImmutableByteArray
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   449
        IncompleteNextCountError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   450
        IndexNotFoundError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   451
        InvalidCodeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   452
        InvalidModeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   453
        InvalidOperationError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   454
        KeyNotFoundError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   455
        MallocFailure
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   456
        NonBooleanReceiverError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   457
        OpenError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   458
        PositionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   459
        PositionOutOfBoundsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   460
        PrimitiveFailure
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   461
        RangeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   462
        ReadError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   463
        StreamIOError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   464
        StreamNotOpenError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   465
        TimeConversionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   466
        UnorderedNumbersError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   467
        UnprotectedExternalBytes
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   468
        WeakDependencyDictionary
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   469
        (Win32Constants win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   470
        (Win32OperatingSystem win32)
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   471
        WriteError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   472
        WrongProceedabilityError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   473
        BadLiteralsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   474
        DecodingError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   475
        EncodingError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   476
        FileStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   477
        InvalidByteCodeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   478
        InvalidInstructionError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   479
        InvalidReadError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   480
        InvalidWriteError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   481
        NoByteCodeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   482
        NonIntegerIndexError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   483
        NonPositionableExternalStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   484
        OverflowError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   485
        String
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   486
        SubscriptOutOfBoundsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   487
        TwoByteString
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   488
        UnderflowError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   489
        WrongNumberOfArgumentsError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   490
        ZeroDivide
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   491
        CharacterRangeError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   492
        DirectoryStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   493
        ImmutableString
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   494
        InvalidEncodingError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   495
        PipeStream
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   496
        Symbol
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   497
        Unicode16String
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   498
        #'CharacterEncoderImplementations::EBCDIC'
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   499
        SameForAllNotification
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   500
        UtcTimestamp
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   501
        InvalidPatchError
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   502
        AbortAllOperationWantedQuery
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   503
        Complex
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   504
        ConfigurableFeatures
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   505
        FileDoesNotExistException
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   506
        MiniLogger
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   507
    )
13835
90bb74796e8a automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13811
diff changeset
   508
13966
36da0e47ac1e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13835
diff changeset
   509
    "Modified: / 20-01-2012 / 16:23:49 / cg"
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   510
!
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   511
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   512
extensionMethodNames
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
   513
    "lists the extension methods which are to be included in the project.
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
   514
     Entries are 2-element array literals, consisting of class-name and selector."
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
   515
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   516
    ^ #(
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   517
    )
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   518
! !
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   519
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   520
!stx_libbasic class methodsFor:'description - project information'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   521
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   522
companyName
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   523
    "Return a companyname which will appear in <lib>.rc"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   524
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   525
    ^ 'eXept Software AG'
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   526
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   527
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   528
description
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   529
    "Return a description string which will appear in nt.def / bc.def"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   530
9800
8d36600d0ec2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
   531
    ^ 'Smalltalk/X Basic Classes'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   532
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   534
legalCopyright
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   535
    "Return a copyright string which will appear in <lib>.rc"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   536
13268
f4e20304dfea changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 13237
diff changeset
   537
    ^ 'Copyright Claus Gittinger 1988-2011\nCopyright eXept Software AG 1998-2011'
10786
e9cd8d487baf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10784
diff changeset
   538
13268
f4e20304dfea changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 13237
diff changeset
   539
    "Modified: / 01-02-2011 / 11:55:33 / cg"
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   540
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   541
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   542
!stx_libbasic class methodsFor:'description - svn'!
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   543
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   544
svnRevisionNr
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   545
    "Return a SVN revision number of myself.
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   546
     This number is updated after a commit"
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   547
13811
8ef2bc5e0616 Added MiniLogger
vrany
parents: 13672
diff changeset
   548
    ^ "$SVN-Revision:"'exported'"$"
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   549
! !
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   550
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   551
!stx_libbasic class methodsFor:'documentation'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   552
13649
795cb3dfa8e6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13642
diff changeset
   553
version
13980
c7b96c968e63 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13966
diff changeset
   554
    ^ '$Header: /cvs/stx/stx/libbasic/stx_libbasic.st,v 1.97 2012-01-24 16:20:01 cg Exp $'
13649
795cb3dfa8e6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13642
diff changeset
   555
!
795cb3dfa8e6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13642
diff changeset
   556
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   557
version_CVS
13980
c7b96c968e63 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13966
diff changeset
   558
    ^ '$Header: /cvs/stx/stx/libbasic/stx_libbasic.st,v 1.97 2012-01-24 16:20:01 cg Exp $'
12073
81ce07ce3c13 automatic checkIn
fm
parents: 12021
diff changeset
   559
!
81ce07ce3c13 automatic checkIn
fm
parents: 12021
diff changeset
   560
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   561
version_SVN
13438
1eb34f240c3d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13429
diff changeset
   562
    ^ '§ Id: stx_libbasic.st 10648 2011-06-23 15:55:10Z vranyj1  §'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
! !