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