stx_libbasic2.st
author Stefan Vogel <sv@exept.de>
Tue, 03 Jun 2014 13:57:52 +0200
changeset 3300 21f5f634fd13
parent 3275 0ca755975c5e
child 3320 2f2efbd80f0c
permissions -rw-r--r--
Make SortedSet and SpilltingWriteStream compiled
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     1
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
     3
	      All Rights Reserved
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     4
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     5
 This software is furnished under a license and may be used
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     6
 only in accordance with the terms of that license and with the
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     8
 be provided or otherwise made available to, or used by, any
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
     9
 other person.  No title to or ownership of the software is
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    10
 hereby transferred.
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    11
"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libbasic2
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
1857
50f7618b6311 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
    18
	category:'* Projects & Packages *'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    21
!stx_libbasic2 class methodsFor:'documentation'!
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    22
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    23
copyright
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    24
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
    26
	      All Rights Reserved
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    27
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    28
 This software is furnished under a license and may be used
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    29
 only in accordance with the terms of that license and with the
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    31
 be provided or otherwise made available to, or used by, any
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    32
 other person.  No title to or ownership of the software is
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    33
 hereby transferred.
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    34
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    35
!
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    36
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    37
documentation
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    38
"
2831
63024b4839fe comment
Claus Gittinger <cg@exept.de>
parents: 2800
diff changeset
    39
    Build- and package information for creation of the st/x standard library: stx_libbasic2
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    40
    This library contains additional basic (nonGUI) classes.
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    41
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    42
! !
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libbasic2 class methodsFor:'description'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    46
excludedFromPreRequisites
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    47
    ^ #(
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    48
        #'exept:libcrypt'    "Rc4Cipher - referenced by RandomGenerator class>>new "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    49
        #'stx:goodies/communication'    "FTPClient - referenced by FtpURI>>writeStreamDo:create:atomic: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    50
        #'stx:libtool'    "FileBrowser - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    51
        #'stx:libview2'    "MIMETypes - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    52
        #'stx:libwidg'    "DialogBox - referenced by Archiver::CompressedFile>>compressFile:to: "
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    53
        #'stx:libhtml'    "HTMLParser - referenced by HTMLUtilities class>>plainTextOfHTML: "
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    54
    )
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    55
!
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    56
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    57
mandatoryPreRequisites
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    58
    "list all required mandatory packages.
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    59
     Packages are mandatory, if they contain superclasses of the package's classes
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    60
     or classes which are extended by this package.
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
    61
     This list can be maintained manually or (better) generated and
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    62
     updated by scanning the superclass hierarchies
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    63
     (the browser has a menu function for that)
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    64
     However, often too much is found, and you may want to explicitely
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    65
     exclude individual packages in the #excludedFromPreRequisites method."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
    66
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
    ^ #(
2987
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    68
        #'stx:libbasic'    "AbstractNumberVector - superclass of IntegerArray "
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    69
    )
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    70
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    71
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    72
referencedPreRequisites
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    73
    "list all packages containing classes referenced by the packages's members.
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    74
     This list can be maintained manually or (better) generated and
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    75
     updated by looking for global variable accesses
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    76
     (the browser has a menu function for that)
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    77
     However, often too much is found, and you may want to explicitely
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    78
     exclude individual packages in the #excludedFromPreRequisites method."
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    79
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    80
    ^ #(
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
    )
2987
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    82
!
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    83
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    84
subProjects
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    85
    "list packages which are known as subprojects.
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    86
     The generated makefile will enter those and make there as well.
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    87
     However: they are not forced to be loaded when a package is loaded;
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    88
     for those, redefine requiredPrerequisites"
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    89
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    90
    ^ #(
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    91
    )
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
!stx_libbasic2 class methodsFor:'description - compilation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
    96
additionalBaseAddressDefinition_bc_dot_mak
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
    97
    "this is an optional definition, which (if present) may speed up the dll-loading a little
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
    98
     on win32 systems."
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
    99
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   100
    ^ '
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   101
# see stdHeader_bc for LIBBASIC2_BASE
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   102
LIB_BASE=$(LIBBASIC2_BASE)
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   103
'
1690
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   104
!
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   105
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   106
additionalLinkLibraries_bc_dot_mak
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   107
"/    ^ '$(ZLIB) $(BZ2LIB)'
3125
00b479560820 class: stx_libbasic2
Stefan Vogel <sv@exept.de>
parents: 3109
diff changeset
   108
    ^ '$(ZLIB_DIR)\$(ZLIB) ws2_32.lib'
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   109
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   110
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   111
additionalLinkLibraries_make_dot_proto
1683
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   112
    ^ '$(ZLIB_LD_ARG) $(BZ2LIB_LD_ARG)'
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   113
!
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   114
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   115
additionalRules_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   116
    ^ '
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   117
$(ZLIB):
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   118
	cd $(ZLIB_DIR)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   119
	$(MAKE) $(MAKE_ZLIB_ARG) $(ZLIB)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   120
	cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   121
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   122
$(BZ2LIB):
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   123
	cd $(BZ2LIB_DIR)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   124
	$(MAKE) $(MAKE_BZ2LIB_ARG) bz2.lib
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   125
	cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   126
'
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   127
!
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   128
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   129
additionalRules_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   130
    ^ '
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   131
zlib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   132
	cd $(ZLIB_DIR); $(MAKE) $(MAKE_ZLIB_ARG)
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   133
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   134
bz2lib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   135
	cd $(BZ2LIB_DIR); $(MAKE) $(MAKE_BZ2LIB_ARG) libbz2.a
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   136
'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   137
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   138
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   139
additionalTargets_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   140
"/    ^ '$(BZ2LIB) $(ZLIB)'      bz2lib doesn't work for now
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   141
    ^ '$(ZLIB)'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   142
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   143
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   144
additionalTargets_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   145
    ^ 'bz2lib zlib'
1738
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   146
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   147
    "Created: / 05-09-2006 / 16:05:12 / cg"
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   148
!
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   149
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   150
localIncludes
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   151
    ^ '-I$(ZLIB_DIR)'
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   152
1739
0b7c61afb2c8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
   153
    "Created: / 06-09-2006 / 18:18:15 / cg"
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   154
!
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   155
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   156
stcOptimizationOptions
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   157
    ^ '+optinline +optinline2 +inlinenew'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   159
    "Modified: / 21-02-2011 / 14:13:24 / cg"
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   160
! !
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   161
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   162
!stx_libbasic2 class methodsFor:'description - contents'!
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   163
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   164
classNamesAndAttributes
2360
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   165
    "lists the classes which are to be included in the project.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   166
     Each entry in the list may be: a single class-name (symbol),
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   167
     or an array-literal consisting of class name and attributes.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   168
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   169
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   170
    ^ #(
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   171
        "<className> or (<className> attributes...) in load order"
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   172
        ActorStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   173
        Archiver
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   174
        BTree
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   175
        BackgroundJob
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   176
        BaseNCoder
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   177
        Bezier
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   178
        BinaryTree
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   179
        BinaryTreeNode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   180
        BitArray
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   181
        BoltLock
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   182
        CRC32Stream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   183
        CacheDictionary
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   184
        CachedValue
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   185
        CharacterSet
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   186
        Circle
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   187
        CollectingReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   188
        CompressionStream
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   189
        (CompressionStreamTest autoload)
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   190
        Curve
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   191
        DirectoryContents
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   192
        EllipticalArc
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   193
        ExternalLong
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   194
        FileSorter
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   195
        FilteringStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   196
        FourByteString
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   197
        Future
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   198
        HTMLUtilities
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   199
        HalfFloatArray
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   200
        Heap
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   201
        IdentityBag
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   202
        IncrementNotification
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   203
        InterestConverterWithParameters
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   204
        Iterator
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   205
        JISEncodedString
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   206
        Lazy
2759
bedbb76275b1 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2750
diff changeset
   207
        LazyArray
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   208
        LineSegment
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   209
        List
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   210
        MappedCollection
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   211
        Monitor
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   212
        MultiReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   213
        NameLookupError
2609
c18dc7ad61cf automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2600
diff changeset
   214
        OperationQueue
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   215
        PhoneticStringUtilities
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   216
        Polygon
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   217
        PrinterStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   218
        PrintfScanf
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   219
        Promise
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   220
        Queue
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   221
        Random
2609
c18dc7ad61cf automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2600
diff changeset
   222
        RandomTT800
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   223
        ReindexedCollection
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   224
        RunArray
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   225
        SegmentedOrderedCollection
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   226
        SelectingReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   227
        SequenceWithSentinel
2609
c18dc7ad61cf automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2600
diff changeset
   228
        SerialPort
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   229
        SharedCollection
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   230
        Singleton
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   231
        SmallBag
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   232
        Socket
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   233
        SocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   234
        SocketAddressInfo
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   235
        SortedSet
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   236
        SoundStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   237
        Spline
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   238
        SplittingWriteStream
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   239
        Stack
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   240
        StringPattern
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   241
        StringUtilities
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   242
        TSTree
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   243
        TSTreeNode
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   244
        TerminalSession
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   245
        Text
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   246
        TextStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   247
        TreeSet
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   248
        URI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   249
        UUID
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   250
        UnboxedIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   251
        UndoSupport
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   252
        UnitConverter
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   253
        VirtualArray
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   254
        ZipArchiveConstants
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   255
        #'stx_libbasic2'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   256
        AATree
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   257
        AATreeNode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   258
        Arrow
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   259
        ArrowedSpline
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   260
        (BZip2Stream unix autoload)
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   261
        BackgroundPeriodicalJob
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   262
        BackgroundQueueProcessingJob
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   263
        Base32Coder
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   264
        Base64Coder
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   265
        Bezier2Segment
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   266
        BooleanArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   267
        CacheDictionaryWithFactory
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   268
        FilteringLineStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   269
        HierarchicalURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   270
        HostAddressLookupError
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   271
        HostNameLookupError
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   272
        IPSocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   273
        IntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   274
        LineNumberReadStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   275
        LongIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   276
        PostscriptPrinterStream
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   277
        RandomGenerator
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   278
        SharedQueue
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   279
        SignedIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   280
        SignedLongIntegerArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   281
        SignedWordArray
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   282
        TSMultiTree
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   283
        TSMultiTreeNode
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   284
        TimedPromise
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   285
        UDSocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   286
        Unicode32String
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   287
        WordArray
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   288
        ZipArchive
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   289
        ZipStream
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   290
        FileURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   291
        FtpURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   292
        HttpURI
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   293
        IPv6SocketAddress
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   294
        SftpURI
3260
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   295
        (PluggableDictionary autoload)
1a4448362d72 Added TSMultiTree, a variant of TSTree that allows for multiple values to be stored
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3244
diff changeset
   296
        (PluggableSet autoload)
3177
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   297
        (AppletalkSocketAddress autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   298
        (BIG5EncodedString autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   299
        (CollectingSharedQueueStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   300
        (Cons autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   301
        (ConsStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   302
        (DecNetSocketAddress autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   303
        (EpsonFX1PrinterStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   304
        (FileText autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   305
        (GBEncodedString autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   306
        (HPLjetIIPrinterStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   307
        (HandlerCollection autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   308
        (InternalPipeStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   309
        (KSCEncodedString autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   310
        (KeywordInContextIndexBuilder autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   311
        (LazyCons autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   312
        (LazyValue autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   313
        (MessageChannel autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   314
        (NumberSet autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   315
        (PowerSet autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   316
        (RandomParkMiller autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   317
        (SequenceableCollectionSorter autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   318
        (UnixPTYStream autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   319
        (ValueLink autoload)
6b4e77ad2c60 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3168
diff changeset
   320
        (WinAPIFunction autoload)
2653
129db31677d1 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2636
diff changeset
   321
        (AVLTree autoload)
2759
bedbb76275b1 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2750
diff changeset
   322
        (Trie autoload)
2887
935939d19c75 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 2885
diff changeset
   323
        (ActiveObject autoload)
2943
3d7b1ff12bc4 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2925
diff changeset
   324
        (LoggingStream autoload)
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   325
    )
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   326
!
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   327
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   328
extensionMethodNames
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   329
    "lists the extension methods which are to be included in the project.
3237
1318c25afd44 changed: TimeStamp #-
Claus Gittinger <cg@exept.de>
parents: 3177
diff changeset
   330
     Entries are pairwise elements, consisting of class-name and selector."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   331
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   332
    ^ #(
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   333
        CharacterArray asKoelnerPhoneticCode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   334
        CharacterArray asSoundexCode
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   335
        CharacterArray printf:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   336
        CharacterArray printf:on:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   337
        CharacterArray printfWith:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   338
        CharacterArray printfWith:with:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   339
        CharacterArray printfWith:with:with:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   340
        CharacterArray printfWith:with:with:with:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   341
        CharacterArray #'printf_formatArgCount'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   342
        CharacterArray #'printf_printArgFrom:to:withData:'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   343
        CharacterArray #'printf_printOn:withData:'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   344
        CharacterArray scanf:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   345
        CharacterArray #'scanf_scanArgFrom:to:format:'
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   346
        CharacterArray sscanf:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   347
        Float absDecimalPrintOn:digits:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   348
        Float absPrintOn:digits:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   349
        Float absScientificPrintOn:digits:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   350
        Object addInterest:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   351
        Object expressInterestIn:for:sendBack:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   352
        Object interests
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   353
        Object interestsFor:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   354
        Object onChangeEvaluate:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   355
        Object onChangeSend:to:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   356
        Object removeInterest:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   357
        Object retractInterestIn:for:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   358
        Object retractInterests
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   359
        Object retractInterestsFor:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   360
        Object retractInterestsForWhich:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   361
        Object retractInterestsIn:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   362
        Object when:send:to:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   363
        Stream collecting:
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   364
        Stream selecting:
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   365
        Object removeActionsForEvent:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   366
        Object removeActionsWithReceiver:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   367
        Object removeAllActionsWithReceiver:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   368
        Object trigger:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   369
        Object trigger:with:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   370
        Object triggerEvent:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   371
        Object triggerEvent:with:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   372
        Object triggerEvent:withArguments:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   373
        Object when:send:to:with:
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   374
        Object when:sendTo:
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   375
    )
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   376
! !
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   377
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   378
!stx_libbasic2 class methodsFor:'description - project information'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   379
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   380
applicationIconFileName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   381
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   382
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   383
    ^ nil
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   384
    "/ ^ self applicationName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   385
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   386
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   387
companyName
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   388
    "Return a companyname which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   389
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   390
    ^ 'eXept Software AG'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   391
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   392
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   393
description
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   394
    "Return a description string which will appear in nt.def / bc.def"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   395
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   396
    ^ 'Smalltalk/X Additional Basic Classes'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   397
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   398
    "Modified: / 14-09-2006 / 10:57:15 / cg"
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   399
!
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   400
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   401
legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   402
    "Return a copyright string which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   403
2750
50f786768873 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
   404
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 1998-2012'
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   405
2750
50f786768873 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
   406
    "Modified: / 18-07-2012 / 19:11:22 / cg"
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   407
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   408
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   409
productName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   410
    "Return a product name which will appear in <lib>.rc"
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   411
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   412
    ^ 'Smalltalk/X'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   413
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   414
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   415
!stx_libbasic2 class methodsFor:'documentation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   416
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   417
version
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   418
    ^ '$Header: /cvs/stx/stx/libbasic2/stx_libbasic2.st,v 1.108 2014-06-03 11:57:52 stefan Exp $'
2284
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   419
!
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   420
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   421
version_CVS
3300
21f5f634fd13 Make SortedSet and SpilltingWriteStream compiled
Stefan Vogel <sv@exept.de>
parents: 3275
diff changeset
   422
    ^ '$Header: /cvs/stx/stx/libbasic2/stx_libbasic2.st,v 1.108 2014-06-03 11:57:52 stefan Exp $'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   423
! !
2885
36e6a080007f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2846
diff changeset
   424