stx_libbasic.st
author Claus Gittinger <cg@exept.de>
Wed, 16 Sep 2009 17:18:14 +0200
changeset 11939 d6dfaea4ebc4
parent 11914 05b371a30b4d
child 11972 506862c98a83
permissions -rw-r--r--
*** empty log message ***
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
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
     3
              All Rights Reserved
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
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
10467
7514a3b9c22c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10307
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
1e3ab1349e3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9800
diff changeset
    26
              All Rights Reserved
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
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    47
    "libbasic has no preRequisites by definition"
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    48
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
        #'stx:libbasic2'    "SocketAddress - referenced by UnixOperatingSystem class>>getNetworkAddresses "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    51
        #'stx:libbasic3'    "MessageTracer - referenced by CompiledCode>>setTraceFullPoint "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    52
        #'stx:libboss'    "BinaryObjectStorage - referenced by PeekableStream>>fileInBinary "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    53
        #'stx:libcomp'    "Parser - referenced by Metaclass>>parserClass "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    54
        #'stx:libhtml'    "URL - referenced by CharacterArray>>asURL "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    55
        #'stx:libtool'    "DiffTextView - referenced by UserPreferences>>versionDiffViewerClass "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    56
        #'stx:libtool2'    "NewInspector::NewInspectorView - referenced by UserPreferences>>inspectorClassSetting "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    57
        #'stx:libview'    "ResourcePack - referenced by Date class>>initNames "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    58
        #'stx:libview2'    "LayoutOrigin - referenced by Point>>asOffsetLayout "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    59
        #'stx:libwidg'    "PullDownMenu - referenced by UserPreferences class>>saveSettings:in: "
dfb0c710b4e8 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 10526
diff changeset
    60
        #'stx:libwidg2'    "DoWhatIMeanSupport - referenced by Smalltalk class>>selectorCompletion: "
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
    61
        #'exept:xml'    "XMLRepresenter - referenced by ClassDescription>>fileOutXMLString:on: "
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
    62
        #'stx:goodies'    "Future - referenced by Block>>futureValue:value:value: "
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
    63
        #'stx:goodies/xml/vw'    "XML::XMLParser - referenced by PeekableStream>>fileInXMLNotifying:passChunk: "
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
    64
        #'stx:libcompat'    "StringCollationPolicy - referenced by SequenceableCollection>>quickSort: "
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
    )
10526
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    66
!
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    67
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    68
preRequisites
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    69
    ^ #(
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    70
    )
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
!stx_libbasic class methodsFor:'description - compilation'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    75
additionalBaseAddressDefinition_bc_dot_mak
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    76
    "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
    77
     on win32 systems."
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    78
9772
86c8ca2f7540 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9766
diff changeset
    79
    ^ '
10307
19562e7dd549 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 10247
diff changeset
    80
# see stdHeader_bc for LIBBASIC_BASE
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
    81
LIB_BASE=$(LIBBASIC_BASE)
9772
86c8ca2f7540 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9766
diff changeset
    82
'
9752
c6fe4bd58bc2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9740
diff changeset
    83
!
c6fe4bd58bc2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9740
diff changeset
    84
9828
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
    85
localIncludes
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
    86
    ^ '-I$(TOP)/librun'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
9828
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
    88
    "Created: / 06-09-2006 / 18:18:06 / cg"
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
stcOptimizationOptions
9720
09649246c44e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9711
diff changeset
    92
    ^ '+optinline +optinline2'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
    "Created: / 23-08-2006 / 11:06:17 / cg"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
    97
!stx_libbasic class methodsFor:'description - contents'!
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
    98
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
    99
classNamesAndAttributes
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   100
    ^ #(
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   101
        "<className> or (<className> attributes...) in load order"
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   102
        Autoload
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   103
        Object
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   104
        ProtoObject
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   105
        AbstractOperatingSystem
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   106
        (BadRomanNumberFormatError autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   107
        Behavior
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   108
        Boolean
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   109
        CharacterEncoder
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   110
        (#'CharacterEncoderImplementations::BIG5' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   111
        (#'CharacterEncoderImplementations::CNS11643' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   112
        (#'CharacterEncoderImplementations::CP437' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   113
        (#'CharacterEncoderImplementations::GB2313_1980' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   114
        (#'CharacterEncoderImplementations::HANGUL' autoload)
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   115
        (#'CharacterEncoderImplementations::ISO10646_to_JavaText' autoload)
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   116
        (#'CharacterEncoderImplementations::ISO10646_to_SGML' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   117
        (#'CharacterEncoderImplementations::ISO10646_to_UTF16BE' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   118
        (#'CharacterEncoderImplementations::ISO10646_to_UTF16LE' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   119
        (#'CharacterEncoderImplementations::ISO8859_10' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   120
        (#'CharacterEncoderImplementations::ISO8859_11' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   121
        (#'CharacterEncoderImplementations::ISO8859_13' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   122
        (#'CharacterEncoderImplementations::ISO8859_14' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   123
        (#'CharacterEncoderImplementations::ISO8859_16' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   124
        (#'CharacterEncoderImplementations::ISO8859_3' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   125
        (#'CharacterEncoderImplementations::ISO8859_4' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   126
        (#'CharacterEncoderImplementations::ISO8859_6' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   127
        (#'CharacterEncoderImplementations::ISO8859_8' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   128
        (#'CharacterEncoderImplementations::ISO8859_9' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   129
        (#'CharacterEncoderImplementations::JIS0201' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   130
        (#'CharacterEncoderImplementations::JIS0208' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   131
        (#'CharacterEncoderImplementations::JIS0208_to_EUC' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   132
        (#'CharacterEncoderImplementations::JIS0208_to_JIS7' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   133
        (#'CharacterEncoderImplementations::JIS0212' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   134
        (#'CharacterEncoderImplementations::JOHAB' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   135
        (#'CharacterEncoderImplementations::KOI7' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   136
        (#'CharacterEncoderImplementations::KOI8_R' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   137
        (#'CharacterEncoderImplementations::KOI8_U' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   138
        (#'CharacterEncoderImplementations::KSC5601' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   139
        (#'CharacterEncoderImplementations::MAC_Arabic' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   140
        (#'CharacterEncoderImplementations::MAC_CentralEuropean' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   141
        (#'CharacterEncoderImplementations::MAC_Croatian' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   142
        (#'CharacterEncoderImplementations::MAC_Cyrillic' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   143
        (#'CharacterEncoderImplementations::MAC_Dingbats' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   144
        (#'CharacterEncoderImplementations::MAC_Farsi' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   145
        (#'CharacterEncoderImplementations::MAC_Greek' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   146
        (#'CharacterEncoderImplementations::MAC_Hebrew' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   147
        (#'CharacterEncoderImplementations::MAC_Iceland' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   148
        (#'CharacterEncoderImplementations::MAC_Japanese' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   149
        (#'CharacterEncoderImplementations::MAC_Korean' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   150
        (#'CharacterEncoderImplementations::MAC_Roman' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   151
        (#'CharacterEncoderImplementations::MAC_Romanian' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   152
        (#'CharacterEncoderImplementations::MAC_Symbol' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   153
        (#'CharacterEncoderImplementations::MAC_Thai' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   154
        (#'CharacterEncoderImplementations::MAC_Turkish' autoload)
11647
db3edbb0a960 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 11571
diff changeset
   155
        #'CharacterEncoderImplementations::MS_Ansi'
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   156
        (#'CharacterEncoderImplementations::MS_Arabic' autoload)
10965
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   157
        (#'CharacterEncoderImplementations::MS_Baltic' win32)
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   158
        (#'CharacterEncoderImplementations::MS_Cyrillic' win32)
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   159
        (#'CharacterEncoderImplementations::MS_EastEuropean' autoload)
10965
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   160
        (#'CharacterEncoderImplementations::MS_Greek' win32)
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   161
        (#'CharacterEncoderImplementations::MS_Hebrew' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   162
        (#'CharacterEncoderImplementations::MS_Symbol' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   163
        (#'CharacterEncoderImplementations::MS_Turkish' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   164
        (#'CharacterEncoderImplementations::NEXT' autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   165
        ClassBuilder
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   166
        ClassCategoryReader
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   167
        Collection
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   168
        Context
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   169
        Continuation
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   170
        Delay
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   171
        ExecutableFunction
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   172
        ExternalAddress
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   173
        (FileDirectory autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   174
        Filename
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   175
        GenericException
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   176
        Geometric
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   177
        (ImaginaryResultError autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   178
        (Infinity autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   179
        InterestConverter
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   180
        (LargeFloat autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   181
        Link
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   182
        (MacFilename macos autoload)
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   183
        Magnitude
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   184
        (MappedExternalBytes autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   185
        Message
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   186
        (MetaNumber autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   187
        MiniDebugger
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   188
        MiniInspector
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   189
        (NaiveRomanNumberFormatNotification autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   190
        NameSpace
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   191
        (NotANumber autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   192
        (NumberConversionError autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   193
        (NumberFormatError autoload)
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   194
        OSErrorHolder
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   195
        ObjectMemory
10965
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   196
        (OpenVMSFileHandle vms)
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   197
        (OpenVMSFilename vms)
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   198
        (OpenVMSOperatingSystem vms)
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   199
        (PCFilename win32)
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   200
        PackageId
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   201
        PluginSupport
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   202
        ProcessorScheduler
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   203
        Project
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   204
        ProjectDefinition
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   205
        (QualifiedName autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   206
        ReadEvalPrintLoop
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   207
        RecursionLock
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   208
        Registry
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   209
        (RomanNumberFormatError autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   210
        Semaphore
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   211
        SharedPool
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   212
        Signal
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   213
        Smalltalk
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   214
        SmalltalkChunkFileSourceWriter
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   215
        (SomeNumber autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   216
        StandaloneStartup
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   217
        Stream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   218
        (SystemNotification autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   219
        (TextCollectorStream autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   220
        (UnboundedExternalStream autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   221
        UndefinedObject
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   222
        (UnprotectedExternalBytes autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   223
        (UserMessage autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   224
        Visitor
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   225
        (WeakValueIdentityDictionary autoload)
10965
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   226
        (Win32FILEHandle win32)
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   227
        (Win32Handle win32)
923334ca095a automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10898
diff changeset
   228
        (Win32OperatingSystem win32)
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   229
        (Win32Process autoload)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   230
        AbstractTime
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   231
        ApplicationDefinition
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   232
        ArithmeticValue
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   233
        AspectVisitor
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   234
        AutoDeletedFilename
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   235
        Bag
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   236
        BlockContext
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   237
        CachingRegistry
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   238
        Character
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   239
        #'CharacterEncoderImplementations::ISO10646_1'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   240
        #'CharacterEncoderImplementations::SingleByteEncoder'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   241
        #'CharacterEncoderImplementations::TwoByteEncoder'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   242
        CompiledCode
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   243
        ControlInterrupt
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   244
        Date
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   245
        Exception
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   246
        ExternalFunction
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   247
        False
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   248
        HandleRegistry
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   249
        HashStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   250
        KeyedCollection
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   251
        LibraryDefinition
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   252
        LookupKey
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   253
        MessageSend
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   254
        NoHandlerError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   255
        Notification
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   256
        OSHandle
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   257
        PeekableStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   258
        Process
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   259
        QuerySignal
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   260
        Rectangle
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   261
        SequenceableCollection
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   262
        Set
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   263
        True
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   264
        UnixFilename
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   265
        UserNotification
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   266
        WeakInterestConverter
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   267
        ActivityNotification
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   268
        ArrayedCollection
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   269
        Association
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   270
        Block
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   271
        #'CharacterEncoderImplementations::ASCII'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   272
        #'CharacterEncoderImplementations::ISO10646_to_UTF8'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   273
        #'CharacterEncoderImplementations::ISO8859_1'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   274
        #'CharacterEncoderImplementations::ISO8859_2'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   275
        #'CharacterEncoderImplementations::ISO8859_5'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   276
        #'CharacterEncoderImplementations::ISO8859_7'
11647
db3edbb0a960 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 11571
diff changeset
   277
        #'CharacterEncoderImplementations::ISO8859_15'
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   278
        #'CharacterEncoderImplementations::JIS0208_to_SJIS'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   279
        ClassDescription
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   280
        ControlRequest
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   281
        Dictionary
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   282
        EncodedStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   283
        EndOfStreamNotification
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   284
        Error
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   285
        ExternalFunctionCallback
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   286
        ExternalLibraryFunction
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   287
        HaltInterrupt
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   288
        IdentitySet
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   289
        LinkedList
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   290
        MD5Stream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   291
        Method
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   292
        MethodDictionary
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   293
        Number
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   294
        OSFileHandle
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   295
        ObjectCoder
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   296
        OrderedCollection
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   297
        Point
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   298
        PositionableStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   299
        Query
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   300
        ReadOnlySequenceableCollection
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   301
        RecursiveStoreError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   302
        SHA1Stream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   303
        Time
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   304
        Timestamp
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   305
        UserConfirmation
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   306
        UserInformation
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   307
        UserInterrupt
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   308
        Warning
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   309
        YesToAllConfirmation
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   310
        #'stx_libbasic'
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   311
        AbortAllOperationRequest
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   312
        Array
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   313
        BreakPointInterrupt
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   314
        CheapBlock
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   315
        Class
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   316
        DoubleArray
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   317
        ElementBoundsError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   318
        FloatArray
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   319
        Fraction
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   320
        IdentityDictionary
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   321
        Integer
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   322
        Interval
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   323
        LimitedPrecisionReal
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   324
        MeasurementValue
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   325
        Metaclass
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   326
        OsError
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   327
        ProceedError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   328
        ProceedableError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   329
        QueryWithoutDefault
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   330
        ReadStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   331
        RecursionError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   332
        RecursiveExceptionError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   333
        RestartProcessRequest
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   334
        SemaphoreSet
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   335
        SignalSet
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   336
        SnapshotError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   337
        SortedCollection
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   338
        StringCollection
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   339
        TerminateProcessRequest
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   340
        UninterpretedBytes
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   341
        (UnixFileDescriptorHandle unix)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   342
        (UnixFileHandle unix)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   343
        (UnixOperatingSystem unix)
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   344
        VMInternalError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   345
        VarArgBlock
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   346
        WeakArray
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   347
        WeakIdentitySet
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   348
        WeakValueDictionary
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   349
        WriteStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   350
        AbortOperationRequest
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   351
        AllocationFailure
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   352
        ArithmeticError
11191
b5956fc8dcdf automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 11119
diff changeset
   353
        AssertionFailedError
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   354
        AutoloadMetaclass
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   355
        ByteArray
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   356
        CharacterWriteStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   357
        ContextError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   358
        ConversionError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   359
        DeepCopyError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   360
        ExceptionHandlerSet
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   361
        ExecutionError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   362
        ExternalBytes
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   363
        FixedPoint
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   364
        Float
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   365
        GetOpt
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   366
        LargeInteger
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   367
        LongFloat
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   368
        MessageNotUnderstood
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   369
        NotFoundError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   370
        OSSignalInterrupt
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   371
        OsIllegalOperation
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   372
        OsInaccessibleError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   373
        OsInvalidArgumentsError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   374
        OsNeedRetryError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   375
        OsNoResourcesError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   376
        OsNotification
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   377
        OsTransferFaultError
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   378
        PrivateMetaclass
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   379
        ReadWriteStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   380
        ShortFloat
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   381
        SignalError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   382
        SmallInteger
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   383
        StreamError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   384
        SubclassResponsibilityError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   385
        TimeoutError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   386
        UnimplementedFunctionalityError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   387
        UserPreferences
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   388
        VarArgCheapBlock
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   389
        WeakIdentityDictionary
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   390
        ArgumentError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   391
        CannotResumeError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   392
        CannotReturnError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   393
        CharacterArray
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   394
        CharacterEncoderError
11191
b5956fc8dcdf automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 11119
diff changeset
   395
        DateConversionError
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   396
        DomainError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   397
        EndOfStreamError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   398
        ExternalStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   399
        ExternalStructure
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   400
        IncompleteNextCountError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   401
        IndexNotFoundError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   402
        InvalidCodeError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   403
        InvalidModeError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   404
        InvalidOperationError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   405
        KeyNotFoundError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   406
        MallocFailure
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   407
        NonBooleanReceiverError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   408
        OpenError
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   409
        PositionError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   410
        PositionOutOfBoundsError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   411
        PrimitiveFailure
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   412
        RangeError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   413
        ReadError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   414
        StreamIOError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   415
        StreamNotOpenError
11191
b5956fc8dcdf automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 11119
diff changeset
   416
        TimeConversionError
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   417
        UnorderedNumbersError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   418
        WeakDependencyDictionary
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   419
        WriteError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   420
        WrongProceedabilityError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   421
        BadLiteralsError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   422
        DecodingError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   423
        EncodingError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   424
        FileStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   425
        InvalidByteCodeError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   426
        InvalidInstructionError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   427
        InvalidReadError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   428
        InvalidWriteError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   429
        NoByteCodeError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   430
        NonIntegerIndexError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   431
        NonPositionableExternalStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   432
        OverflowError
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   433
        String
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   434
        SubscriptOutOfBoundsError
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   435
        TwoByteString
10068
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   436
        UnderflowError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   437
        WrongNumberOfArgumentsError
f22af8a85c54 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10066
diff changeset
   438
        ZeroDivide
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   439
        CharacterRangeError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   440
        DirectoryStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   441
        InvalidEncodingError
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   442
        PipeStream
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   443
        Symbol
10247
dadc23116a80 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 10110
diff changeset
   444
        Unicode16String
11446
b4dc482f756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11191
diff changeset
   445
        InlineObject
b4dc482f756d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11191
diff changeset
   446
        InlineObjectPrototype
11885
f7948b1e43b3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11647
diff changeset
   447
        ClassBuildError
11914
05b371a30b4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
   448
        InlineObjectClassDescription
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   449
    )
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   450
!
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   451
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   452
extensionMethodNames
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   453
    ^ #(
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   454
    )
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   455
! !
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   456
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   457
!stx_libbasic class methodsFor:'description - project information'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   458
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   459
companyName
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   460
    "Return a companyname which will appear in <lib>.rc"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   461
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   462
    ^ 'eXept Software AG'
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   463
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   464
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   465
description
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   466
    "Return a description string which will appear in nt.def / bc.def"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   467
9800
8d36600d0ec2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
   468
    ^ 'Smalltalk/X Basic Classes'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   469
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   470
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   471
legalCopyright
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   472
    "Return a copyright string which will appear in <lib>.rc"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   473
11555
27b218449649 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11453
diff changeset
   474
    ^ 'Copyright Claus Gittinger 1988-2009\nCopyright eXept Software AG 1998-2009'
10786
e9cd8d487baf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10784
diff changeset
   475
e9cd8d487baf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10784
diff changeset
   476
    "Modified: / 08-11-2007 / 16:58:06 / cg"
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   477
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   478
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   479
!stx_libbasic class methodsFor:'documentation'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   480
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   481
version
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
   482
    ^ '$Header: /cvs/stx/stx/libbasic/stx_libbasic.st,v 1.55 2009-09-16 15:18:14 cg Exp $'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   483
! !