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