stx_libbasic.st
author Claus Gittinger <cg@exept.de>
Wed, 14 May 2014 00:56:59 +0200
changeset 16442 b26a76b3e296
parent 16434 c828ccafd850
child 16534 26e568b52c2b
permissions -rw-r--r--
x
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
"
14425
22ae5964d08b comment
Claus Gittinger <cg@exept.de>
parents: 14424
diff changeset
    39
    Build- and package information for creation of the st/x standard library: stx_libbasic
9811
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
    ^ #(
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
    51
        #'exept:ctypes'    "CType - referenced by ExternalLibraryFunction>>ffiTypeSymbolForType: "
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
    52
        #'exept:expecco'    "Expecco::ExpeccoXMLDecoder - referenced by ClassDescription>>iconInBrowserForVariableNamed: "
14844
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    53
        #'exept:libcrypt'    "HashRandom - referenced by HashStream class>>random "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    54
        #'stx:goodies'    "LockedFileStream - referenced by ClassDescription>>changesStream "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    55
        #'stx:goodies/simpleServices'    "STXScriptingServer - referenced by StandaloneStartup class>>handleScriptingOptionsFromArguments: "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    56
        #'stx:goodies/sunit'    "TestRunner - referenced by UserPreferences>>testRunnerClass "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    57
        #'stx:goodies/xml/stx'    "XMLCoder - referenced by ClassDescription>>fileOutXMLString:on: "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    58
        #'stx:goodies/xml/vw'    "XML::XMLParser - referenced by PeekableStream>>fileInXMLNotifying:passChunk: "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    59
        #'stx:libbasic2'    "List - referenced by Collection>>asList "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    60
        #'stx:libbasic3'    "ClassOrganizer - referenced by ClassDescription>>organization "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    61
        #'stx:libboss'    "BinaryObjectStorage - referenced by PeekableStream>>fileInBinary "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    62
        #'stx:libcomp'    "Parser - referenced by CharacterArray>>isValidSmalltalkIdentifier "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    63
        #'stx:libcompat'    "Dolphin::ClassCategoriesReader - referenced by ClassDescription>>categoriesForClass "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    64
        #'stx:libhtml'    "URL - referenced by CharacterArray>>asURL "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    65
        #'stx:libtool'    "Tools::ToDoListBrowser - referenced by ClassBuilder>>checkInstvarRedefsWith:subclassOf:old:name: "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    66
        #'stx:libview'    "Image - referenced by UserPreferences class>>saveSettings:in: "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    67
        #'stx:libview2'    "ApplicationModel - referenced by ApplicationDefinition class>>startupClassName_code "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    68
        #'stx:libwidg'    "Button - referenced by UserPreferences class>>saveSettings:in: "
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    69
        #'stx:libwidg2'    "ProgressNotification - referenced by UserNotification class>>notify:progress: "
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    70
    )
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    71
!
10526
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    72
14844
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    73
mandatoryPreRequisites
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    74
    "list all required mandatory packages.
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    75
     Packages are mandatory, if they contain superclasses of the package's classes
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    76
     or classes which are extended by this package.
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    77
     This list can be maintained manually or (better) generated and
14844
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    78
     updated by scanning the superclass hierarchies
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
    79
     (the browser has a menu function for that)"
14844
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    80
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    81
    ^ #(
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    82
    )
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    83
!
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    84
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    85
referencedPreRequisites
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    86
    "list all packages containing classes referenced by the packages's members.
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    87
     This list can be maintained manually or (better) generated and
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    88
     updated by looking for global variable accesses
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    89
     (the browser has a menu function for that)
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    90
     However, often too much is found, and you may want to explicitely
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
    91
     exclude individual packages in the #excludedFromPreRequisites method."
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    92
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
    93
    ^ #(
10526
db65ccd3e584 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10467
diff changeset
    94
    )
15142
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
    95
!
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
    96
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
    97
subProjects
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
    98
    "list packages which are known as subprojects.
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
    99
     The generated makefile will enter those and make there as well.
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
   100
     However: they are not forced to be loaded when a package is loaded;
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
   101
     for those, redefine requiredPrerequisites"
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
   102
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
   103
    ^ #(
aeb9341fd2b8 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14918
diff changeset
   104
    )
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
!stx_libbasic class methodsFor:'description - compilation'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
   109
additionalBaseAddressDefinition_bc_dot_mak
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
   110
    "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
   111
     on win32 systems."
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
   112
9772
86c8ca2f7540 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9766
diff changeset
   113
    ^ '
10307
19562e7dd549 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 10247
diff changeset
   114
# see stdHeader_bc for LIBBASIC_BASE
11939
d6dfaea4ebc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11914
diff changeset
   115
LIB_BASE=$(LIBBASIC_BASE)
9772
86c8ca2f7540 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9766
diff changeset
   116
'
9752
c6fe4bd58bc2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9740
diff changeset
   117
!
c6fe4bd58bc2 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9740
diff changeset
   118
9828
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
   119
localIncludes
15260
417c9c49a244 class: stx_libbasic
Claus Gittinger <cg@exept.de>
parents: 15150
diff changeset
   120
    ^ '-I$(TOP)/librun $(FFI_INCLUDE)'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
9828
78a5d6c6b30f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9811
diff changeset
   122
    "Created: / 06-09-2006 / 18:18:06 / cg"
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
stcOptimizationOptions
9720
09649246c44e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9711
diff changeset
   126
    ^ '+optinline +optinline2'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    "Created: / 23-08-2006 / 11:06:17 / cg"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   131
!stx_libbasic class methodsFor:'description - contents'!
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   132
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   133
classNamesAndAttributes
12448
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   134
    "lists the classes which are to be included in the project.
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   135
     Each entry in the list may be: a single class-name (symbol),
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   136
     or an array-literal consisting of class name and attributes.
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   137
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
e6f77e779599 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 12407
diff changeset
   138
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   139
    ^ #(
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   140
        "<className> or (<className> attributes...) in load order"
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   141
        Autoload
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   142
        Object
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   143
        ProtoObject
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   144
        AbstractOperatingSystem
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   145
        AbstractSourceFileReader
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   146
        Annotation
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   147
        Behavior
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   148
        Boolean
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   149
        CharacterEncoder
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   150
        ClassBuilder
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   151
        ClassCategoryReader
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   152
        CmdLineOption
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   153
        CmdLineParser
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   154
        Collection
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   155
        ConfigurableFeatures
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   156
        Context
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   157
        Continuation
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   158
        Delay
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   159
        ExecutableFunction
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   160
        ExternalAddress
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   161
        ExternalLibrary
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   162
        Filename
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   163
        GenericException
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   164
        Geometric
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   165
        InlineObject
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   166
        InterestConverter
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   167
        Link
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   168
        Lookup
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   169
        Magnitude
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   170
        Message
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   171
        MiniDebugger
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   172
        MiniInspector
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   173
        MiniLogger
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   174
        NameSpace
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   175
        OSErrorHolder
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   176
        OSProcess
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   177
        ObjectMemory
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   178
        PackageId
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   179
        PolymorphicInlineCache
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   180
        ProcessorScheduler
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   181
        ProgrammingLanguage
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   182
        Project
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   183
        ProjectDefinition
16434
c828ccafd850 new class
Claus Gittinger <cg@exept.de>
parents: 16364
diff changeset
   184
        (QualifiedName autoload)
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   185
        ReadEvalPrintLoop
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   186
        RecursionLock
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   187
        Registry
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   188
        Semaphore
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   189
        SharedPool
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   190
        Signal
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   191
        Smalltalk
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   192
        StandaloneStartup
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   193
        Stream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   194
        SystemChangeNotifier
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   195
        UndefinedObject
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   196
        UserMessage
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   197
        Visitor
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   198
        AbstractTime
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   199
        ApplicationDefinition
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   200
        ArithmeticValue
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   201
        AspectVisitor
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   202
        AutoDeletedFilename
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   203
        Bag
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   204
        BlockContext
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   205
        BuiltinLookup
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   206
        CachingRegistry
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   207
        Character
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   208
        #'CharacterEncoderImplementations::ISO10646_1'
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   209
        #'CharacterEncoderImplementations::SingleByteEncoder'
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   210
        #'CharacterEncoderImplementations::TwoByteEncoder'
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   211
        CompiledCode
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   212
        ControlInterrupt
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   213
        Date
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   214
        Exception
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   215
        ExternalFunction
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   216
        False
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   217
        HandleRegistry
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   218
        HashStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   219
        InlineObjectPrototype
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   220
        KeyedCollection
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   221
        LibraryDefinition
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   222
        LookupKey
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   223
        MessageSend
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   224
        NamespaceAwareLookup
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   225
        NoHandlerError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   226
        Notification
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   227
        OSHandle
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   228
        PeekableStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   229
        Process
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   230
        QuerySignal
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   231
        Rectangle
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   232
        SequenceableCollection
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   233
        Set
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   234
        SmalltalkChunkFileSourceReader
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   235
        SmalltalkLanguage
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   236
        True
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   237
        UnixFilename
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   238
        WeakInterestConverter
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   239
        ArrayedCollection
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   240
        Association
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   241
        Block
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   242
        CascadingNotification
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   243
        #'CharacterEncoderImplementations::ASCII'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   244
        #'CharacterEncoderImplementations::CP437'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   245
        #'CharacterEncoderImplementations::EBCDIC'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   246
        #'CharacterEncoderImplementations::ISO10646_to_UTF16BE'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   247
        #'CharacterEncoderImplementations::ISO10646_to_UTF8'
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   248
        #'CharacterEncoderImplementations::ISO8859_1'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   249
        #'CharacterEncoderImplementations::ISO8859_10'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   250
        #'CharacterEncoderImplementations::ISO8859_11'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   251
        #'CharacterEncoderImplementations::ISO8859_13'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   252
        #'CharacterEncoderImplementations::ISO8859_14'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   253
        #'CharacterEncoderImplementations::ISO8859_15'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   254
        #'CharacterEncoderImplementations::ISO8859_16'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   255
        #'CharacterEncoderImplementations::ISO8859_2'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   256
        #'CharacterEncoderImplementations::ISO8859_3'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   257
        #'CharacterEncoderImplementations::ISO8859_4'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   258
        #'CharacterEncoderImplementations::ISO8859_5'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   259
        #'CharacterEncoderImplementations::ISO8859_6'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   260
        #'CharacterEncoderImplementations::ISO8859_7'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   261
        #'CharacterEncoderImplementations::ISO8859_8'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   262
        #'CharacterEncoderImplementations::KOI8_R'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   263
        #'CharacterEncoderImplementations::MS_Ansi'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   264
        #'CharacterEncoderImplementations::MS_Arabic'
14181
c1ad356525a9 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14036
diff changeset
   265
        #'CharacterEncoderImplementations::MS_Baltic'
c1ad356525a9 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14036
diff changeset
   266
        #'CharacterEncoderImplementations::MS_Cyrillic'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   267
        #'CharacterEncoderImplementations::MS_EastEuropean'
14181
c1ad356525a9 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14036
diff changeset
   268
        #'CharacterEncoderImplementations::MS_Greek'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   269
        #'CharacterEncoderImplementations::MS_Hebrew'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   270
        #'CharacterEncoderImplementations::MS_Symbol'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   271
        #'CharacterEncoderImplementations::MS_Turkish'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   272
        ClassDescription
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   273
        Complex
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   274
        ControlRequest
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   275
        Dictionary
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   276
        EncodedStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   277
        EndOfStreamNotification
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   278
        Error
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   279
        ExternalFunctionCallback
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   280
        ExternalLibraryFunction
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   281
        HaltInterrupt
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   282
        IdentitySet
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   283
        LinkedList
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   284
        MD5Stream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   285
        Method
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   286
        MethodDictionary
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   287
        NaiveRomanNumberFormatNotification
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   288
        Number
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   289
        OSFileHandle
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   290
        ObjectCoder
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   291
        OrderedCollection
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   292
        OrderedSet
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   293
        Point
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   294
        PositionableStream
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   295
        ProceedingNotification
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   296
        Query
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   297
        ReadOnlySequenceableCollection
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   298
        RecursiveStoreError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   299
        SHA1Stream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   300
        Time
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   301
        TimeoutNotification
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   302
        Timestamp
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   303
        UserConfirmation
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   304
        UserInterrupt
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   305
        UserNotification
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   306
        YesToAllConfirmation
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   307
        #'stx_libbasic'
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   308
        AbortAllOperationRequest
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   309
        AbortAllOperationWantedQuery
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   310
        AbstractSourceFileWriter
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   311
        ActivityNotification
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   312
        Array
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   313
        BreakPointInterrupt
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   314
        #'CharacterEncoderImplementations::ISO10646_to_UTF16LE'
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   315
        #'CharacterEncoderImplementations::ISO10646_to_XMLUTF8'
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   316
        #'CharacterEncoderImplementations::ISO8859_9'
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   317
        #'CharacterEncoderImplementations::KOI8_U'
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   318
        CheapBlock
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   319
        ClassBuildError
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   320
        CmdLineOptionError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   321
        ElementBoundsError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   322
        FileDirectory
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   323
        Fraction
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   324
        GetOpt
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   325
        IdentityDictionary
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   326
        InlineObjectClassDescription
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   327
        Integer
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   328
        Interval
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   329
        IsDebuggingQuery
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   330
        LimitedPrecisionReal
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   331
        MeasurementValue
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   332
        MetaNumber
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   333
        Metaclass
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   334
        MethodWithBreakpoints
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   335
        OrderedDictionary
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   336
        OsError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   337
        PluginSupport
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   338
        ProceedableError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   339
        QueryWithoutDefault
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   340
        ReadStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   341
        RecursionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   342
        RecursiveExceptionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   343
        RestartProcessRequest
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   344
        SameForAllNotification
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   345
        SemaphoreSet
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   346
        SignalSet
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   347
        SnapshotError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   348
        SortedCollection
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   349
        StringCollection
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   350
        TerminateProcessRequest
16364
b6561c7643d5 class: TimeDuration
Claus Gittinger <cg@exept.de>
parents: 16205
diff changeset
   351
        TimeDuration
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   352
        UninterpretedBytes
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   353
        (UnixFileDescriptorHandle unix)
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   354
        (UnixFileHandle unix)
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   355
        (UnixOperatingSystem unix)
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   356
        UserInformation
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   357
        UtcTimestamp
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   358
        VMInternalError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   359
        VarArgBlock
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   360
        Warning
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   361
        WeakArray
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   362
        WeakIdentitySet
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   363
        WeakValueDictionary
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   364
        WriteStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   365
        AbortOperationRequest
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   366
        AbstractNumberVector
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   367
        AllocationFailure
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   368
        AmbiguousMessage
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   369
        ArithmeticError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   370
        AssertionFailedError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   371
        AutoloadMetaclass
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   372
        ByteArray
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   373
        CharacterArray
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   374
        CharacterWriteStream
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   375
        Class
16434
c828ccafd850 new class
Claus Gittinger <cg@exept.de>
parents: 16364
diff changeset
   376
        ClassBuildWarning
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   377
        ContextError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   378
        ConversionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   379
        DeepCopyError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   380
        ExceptionHandlerSet
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   381
        ExecutionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   382
        ExternalBytes
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   383
        FixedPoint
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   384
        Float
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   385
        ImmutableArray
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   386
        Infinity
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   387
        InvalidPatchError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   388
        LargeInteger
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   389
        LongFloat
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   390
        MessageNotUnderstood
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   391
        NoModificationError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   392
        NotFoundError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   393
        OSSignalInterrupt
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   394
        (OSXOperatingSystem unix)
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   395
        OsIllegalOperation
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   396
        OsInaccessibleError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   397
        OsInvalidArgumentsError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   398
        OsNeedRetryError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   399
        OsNoResourcesError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   400
        OsNotification
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   401
        OsTransferFaultError
16143
5a557c70b976 Add PackagLoadError, PackageNotFoundError
Stefan Vogel <sv@exept.de>
parents: 16107
diff changeset
   402
        PackageLoadError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   403
        PrivateMetaclass
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   404
        ProceedError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   405
        ReadWriteStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   406
        ShortFloat
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   407
        SignalError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   408
        SmallInteger
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   409
        SmalltalkChunkFileSourceWriter
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   410
        SomeNumber
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   411
        StreamError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   412
        SubclassResponsibilityError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   413
        TimeoutError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   414
        UnimplementedFunctionalityError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   415
        UserPreferences
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   416
        VarArgCheapBlock
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   417
        WeakIdentityDictionary
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   418
        WeakValueIdentityDictionary
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   419
        ArgumentError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   420
        CannotResumeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   421
        CannotReturnError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   422
        CharacterEncoderError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   423
        DateConversionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   424
        DomainError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   425
        DoubleArray
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   426
        EndOfStreamError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   427
        ExternalStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   428
        ExternalStructure
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   429
        FloatArray
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   430
        ImmutableByteArray
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   431
        IncompleteNextCountError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   432
        IndexNotFoundError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   433
        InvalidCodeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   434
        InvalidModeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   435
        InvalidOperationError
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   436
        InvalidTypeError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   437
        KeyNotFoundError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   438
        MallocFailure
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   439
        MethodNotAppropriateError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   440
        NonBooleanReceiverError
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   441
        NumberConversionError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   442
        OpenError
16143
5a557c70b976 Add PackagLoadError, PackageNotFoundError
Stefan Vogel <sv@exept.de>
parents: 16107
diff changeset
   443
        PackageNotFoundError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   444
        PositionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   445
        PositionOutOfBoundsError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   446
        PrimitiveFailure
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   447
        RangeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   448
        ReadError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   449
        StreamIOError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   450
        StreamNotOpenError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   451
        String
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   452
        TimeConversionError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   453
        TwoByteString
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   454
        UnorderedNumbersError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   455
        UnprotectedExternalBytes
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   456
        WeakDependencyDictionary
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   457
        WriteError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   458
        WrongProceedabilityError
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   459
        AbstractClassInstantiationError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   460
        BadLiteralsError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   461
        DecodingError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   462
        EncodingError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   463
        FileDoesNotExistException
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   464
        FileStream
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   465
        ImmutableString
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   466
        InvalidByteCodeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   467
        InvalidInstructionError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   468
        InvalidReadError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   469
        InvalidWriteError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   470
        NoByteCodeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   471
        NonIntegerIndexError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   472
        NonPositionableExternalStream
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   473
        NumberFormatError
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   474
        OverflowError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   475
        SubscriptOutOfBoundsError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   476
        Symbol
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   477
        UnderflowError
14454
9b4a3a45dbd1 comment/format in: #preRequisites
Stefan Vogel <sv@exept.de>
parents: 14425
diff changeset
   478
        Unicode16String
14036
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   479
        WrongNumberOfArgumentsError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   480
        ZeroDivide
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   481
        CharacterRangeError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   482
        DirectoryStream
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   483
        InvalidEncodingError
c03fb0fc3ccd automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13982
diff changeset
   484
        PipeStream
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   485
        RomanNumberFormatError
16107
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   486
        (OpenVMSFileHandle vms)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   487
        (OpenVMSFilename vms)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   488
        (OpenVMSOperatingSystem vms)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   489
        (PCFilename win32)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   490
        (Win32Constants win32)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   491
        (Win32FILEHandle win32)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   492
        (Win32Handle win32)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   493
        (Win32OperatingSystem win32)
13afffb2382b Added Win32 and VMS classes accidentally dropped stx_libbasic 1.121.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16062
diff changeset
   494
        (Win32Process win32)
16062
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   495
        (AbstractDesktop autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   496
        (BadRomanNumberFormatError autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   497
        (#'CharacterEncoderImplementations::BIG5' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   498
        (#'CharacterEncoderImplementations::CNS11643' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   499
        (#'CharacterEncoderImplementations::GB2313_1980' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   500
        (#'CharacterEncoderImplementations::HANGUL' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   501
        (#'CharacterEncoderImplementations::ISO10646_to_JavaText' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   502
        (#'CharacterEncoderImplementations::ISO10646_to_SGML' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   503
        (#'CharacterEncoderImplementations::JIS0201' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   504
        (#'CharacterEncoderImplementations::JIS0208' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   505
        (#'CharacterEncoderImplementations::JIS0208_to_EUC' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   506
        (#'CharacterEncoderImplementations::JIS0208_to_JIS7' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   507
        (#'CharacterEncoderImplementations::JIS0208_to_SJIS' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   508
        (#'CharacterEncoderImplementations::JIS0212' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   509
        (#'CharacterEncoderImplementations::JOHAB' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   510
        (#'CharacterEncoderImplementations::KOI7' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   511
        (#'CharacterEncoderImplementations::KSC5601' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   512
        (#'CharacterEncoderImplementations::MAC_Arabic' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   513
        (#'CharacterEncoderImplementations::MAC_CentralEuropean' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   514
        (#'CharacterEncoderImplementations::MAC_Croatian' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   515
        (#'CharacterEncoderImplementations::MAC_Cyrillic' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   516
        (#'CharacterEncoderImplementations::MAC_Dingbats' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   517
        (#'CharacterEncoderImplementations::MAC_Farsi' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   518
        (#'CharacterEncoderImplementations::MAC_Greek' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   519
        (#'CharacterEncoderImplementations::MAC_Hebrew' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   520
        (#'CharacterEncoderImplementations::MAC_Iceland' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   521
        (#'CharacterEncoderImplementations::MAC_Japanese' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   522
        (#'CharacterEncoderImplementations::MAC_Korean' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   523
        (#'CharacterEncoderImplementations::MAC_Roman' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   524
        (#'CharacterEncoderImplementations::MAC_Romanian' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   525
        (#'CharacterEncoderImplementations::MAC_Symbol' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   526
        (#'CharacterEncoderImplementations::MAC_Thai' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   527
        (#'CharacterEncoderImplementations::MAC_Turkish' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   528
        (#'CharacterEncoderImplementations::NEXT' autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   529
        (CmdLineParserTest autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   530
        (GNOMEDesktop autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   531
        (ImaginaryResultError autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   532
        (LargeFloat autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   533
        (MacFilename macos autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   534
        (MappedExternalBytes autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   535
        (NotANumber autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   536
        (SmalltalkDesktop autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   537
        (SystemNotification autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   538
        (TextCollectorStream autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   539
        (UnboundedExternalStream autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   540
        (UnixDesktop autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   541
        (WindowsDesktop autoload)
1a95c0937233 recheckin to fix build files
Claus Gittinger <cg@exept.de>
parents: 16033
diff changeset
   542
        (XDGDesktop autoload)
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   543
    )
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   544
!
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   545
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   546
extensionMethodNames
12537
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
   547
    "lists the extension methods which are to be included in the project.
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
   548
     Entries are 2-element array literals, consisting of class-name and selector."
75cfa5a16b41 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 12510
diff changeset
   549
10898
58db31117c32 Correct load order
Stefan Vogel <sv@exept.de>
parents: 10889
diff changeset
   550
    ^ #(
9945
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   551
    )
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   552
! !
ec6b4320a7f0 +StandAloneStartup
Claus Gittinger <cg@exept.de>
parents: 9878
diff changeset
   553
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   554
!stx_libbasic class methodsFor:'description - project information'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   555
14844
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   556
applicationIconFileName
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   557
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   558
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   559
    ^ nil
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   560
    "/ ^ self applicationName
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   561
!
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   562
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
companyName
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   564
    "Return a companyname which will appear in <lib>.rc"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   565
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   566
    ^ 'eXept Software AG'
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   567
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   568
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
description
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   570
    "Return a description string which will appear in nt.def / bc.def"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   571
9800
8d36600d0ec2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
   572
    ^ 'Smalltalk/X Basic Classes'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   573
!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   574
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   575
legalCopyright
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   576
    "Return a copyright string which will appear in <lib>.rc"
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   577
14909
82e6a8d5f436 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 14868
diff changeset
   578
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 1998-2013'
10786
e9cd8d487baf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10784
diff changeset
   579
14211
7b7c33b2b493 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 14181
diff changeset
   580
    "Modified: / 18-07-2012 / 19:10:19 / cg"
14844
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   581
!
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   582
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   583
productName
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   584
    "Return a product name which will appear in <lib>.rc"
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   585
14e91641aff1 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 14829
diff changeset
   586
    ^ 'Smalltalk/X'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
! !
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   588
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   589
!stx_libbasic class methodsFor:'description - svn'!
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   590
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   591
svnRevisionNr
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   592
    "Return a SVN revision number of myself.
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   593
     This number is updated after a commit"
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   594
13811
8ef2bc5e0616 Added MiniLogger
vrany
parents: 13672
diff changeset
   595
    ^ "$SVN-Revision:"'exported'"$"
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   596
! !
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   597
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   598
!stx_libbasic class methodsFor:'documentation'!
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   599
13649
795cb3dfa8e6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13642
diff changeset
   600
version
16442
Claus Gittinger <cg@exept.de>
parents: 16434
diff changeset
   601
    ^ '$Header: /cvs/stx/stx/libbasic/stx_libbasic.st,v 1.128 2014-05-13 22:56:59 cg Exp $'
13649
795cb3dfa8e6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13642
diff changeset
   602
!
795cb3dfa8e6 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 13642
diff changeset
   603
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   604
version_CVS
16442
Claus Gittinger <cg@exept.de>
parents: 16434
diff changeset
   605
    ^ '$Header: /cvs/stx/stx/libbasic/stx_libbasic.st,v 1.128 2014-05-13 22:56:59 cg Exp $'
12073
81ce07ce3c13 automatic checkIn
fm
parents: 12021
diff changeset
   606
!
81ce07ce3c13 automatic checkIn
fm
parents: 12021
diff changeset
   607
13429
0e72af05fd47 Jan's changes
vrany
parents: 13410
diff changeset
   608
version_SVN
15260
417c9c49a244 class: stx_libbasic
Claus Gittinger <cg@exept.de>
parents: 15150
diff changeset
   609
    ^ '$ Id: stx_libbasic.st 10648 2011-06-23 15:55:10Z vranyj1  $'
9711
57a31a862d57 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   610
! !
14829
74e6931520fb automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 14485
diff changeset
   611