stx_libbasic2.st
author Claus Gittinger <cg@exept.de>
Tue, 20 Aug 2019 22:58:41 +0200
changeset 5106 ec689a1d5ec8
parent 5098 c4b4aeea9802
child 5119 70838fd7f6d3
permissions -rw-r--r--
#OTHER by exept initial checkin class: CollectionBuilder added: #, #add: #addAll: #at: #do: #inspectorClass #keysAndValuesDo: #size #withAll:and: class: CollectionBuilder class added: #copyright #documentation #examples #withAll:and:
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
"
4208
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
     2
 COPYRIGHT (c) Claus Gittinger / eXept Software AG
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
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
3474
0bfc9a68c225 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
    14
"{ NameSpace: Smalltalk }"
0bfc9a68c225 class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3450
diff changeset
    15
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
LibraryDefinition subclass:#stx_libbasic2
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
1857
50f7618b6311 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1849
diff changeset
    20
	category:'* Projects & Packages *'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    23
!stx_libbasic2 class methodsFor:'documentation'!
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
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    26
"
4208
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    27
 COPYRIGHT (c) Claus Gittinger / eXept Software AG
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    28
              All Rights Reserved
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    29
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    30
 This software is furnished under a license and may be used
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    31
 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
    32
 inclusion of the above copyright notice.   This software may not
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    33
 be provided or otherwise made available to, or used by, any
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    34
 other person.  No title to or ownership of the software is
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    35
 hereby transferred.
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
!
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    38
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    39
documentation
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    40
"
3320
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    41
    Package documentation:
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    42
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    43
    This library contains additional basic (nonGUI) classes.
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    44
3744
381346e4e81c #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 3738
diff changeset
    45
    These are less fundamental as in libbasic and not required by many stand alone applications.
3320
2f2efbd80f0c class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3300
diff changeset
    46
    Beside additional container classes, this includes URL support, Zip support,
3504
98cfb12e9c3d class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
    47
    PTY, serial line, sockets and IP addresses, and other less frequently needed things.
98cfb12e9c3d class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
    48
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    49
    Most real world applications will include this, but it is possible to create
3504
98cfb12e9c3d class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
    50
    small standAlone apps which do not need it.
4208
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    51
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    52
    [author:]
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    53
        cg
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    54
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    55
    [primary maintainer:]
c7b29ae39e62 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4207
diff changeset
    56
        cg
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    57
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    58
! !
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
!stx_libbasic2 class methodsFor:'description'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    62
excludedFromPreRequisites
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    63
    ^ #(
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    64
	#'exept:libcrypt'    "Rc4Cipher - referenced by RandomGenerator class>>new "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    65
	#'stx:goodies/communication'    "FTPClient - referenced by FtpURI>>writeStreamDo:create:atomic: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    66
	#'stx:libtool'    "FileBrowser - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    67
	#'stx:libview2'    "MIMETypes - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    68
	#'stx:libwidg'    "DialogBox - referenced by Archiver::CompressedFile>>compressFile:to: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    69
	#'stx:libhtml'    "HTMLParser - referenced by HTMLUtilities class>>plainTextOfHTML: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    70
	#'stx:goodies/webServer/htmlTree'    "HTML::TreeBuilder - referenced by HTMLPrinterStream>>initialize"
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    71
    )
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    72
!
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    73
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    74
mandatoryPreRequisites
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    75
    "list packages which are mandatory as a prerequisite.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    76
     This are packages containing superclasses of my classes and classes which
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    77
     are extended by myself.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    78
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
    79
     When loading whole packages,
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
    80
     mandatoryPreRequisites will be automatically loaded
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
    81
     BEFORE this packet has been loaded. 
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    82
     This method is generated automatically,
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
    83
     by searching along the inheritance chain of all of my classes.
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
    84
     Please take a look at the #referencedPreRequisites method as well."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
    85
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
    ^ #(
4720
e491275c5a48 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4705
diff changeset
    87
        #'stx:libbasic'    "AbstractNumberVector - superclass of ComplexDoubleArray"
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    88
    )
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    89
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    90
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    91
referencedPreRequisites
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    92
    "list packages which are a prerequisite, because they contain
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    93
     classes which are referenced by my classes.
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
    94
     These packages are NOT needed as a prerequisite for compiling or loading,
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    95
     however, a class from it may be referenced during execution and having it
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    96
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    97
     includes explicit checks for the package being present.
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
    98
     When loading whole packages,
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
    99
     referencedPreRequisites will be automatically loaded
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   100
     AFTER this packet has been loaded. 
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
   101
     This method is generated automatically,
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   102
     by searching all classes (and their packages) which are referenced by my classes.
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   103
     Please also take a look at the #mandatoryPreRequisites method"
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   104
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   105
    ^ #(
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
    )
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   107
!
4975
dfb8998b95e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4915
diff changeset
   108
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   109
subProjects
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   110
    "list packages which are known as subprojects.
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   111
     The generated makefile will enter those and make there as well.
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   112
     However: they are only built, not forced to be loaded when a package is loaded;
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   113
     for those, redefine #referencedPrerequisites or #mandatoryPreRequisites."
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   114
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   115
    ^ #(
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   116
    )
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
!stx_libbasic2 class methodsFor:'description - compilation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   121
additionalBaseAddressDefinition_bc_dot_mak
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   122
    "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
   123
     on win32 systems."
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   124
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   125
    ^ '
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   126
# see stdHeader_bc for LIBBASIC2_BASE
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   127
LIB_BASE=$(LIBBASIC2_BASE)
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   128
'
1690
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   129
!
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   130
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   131
additionalLinkLibraries_bc_dot_mak
3928
d1133788cbba #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3921
diff changeset
   132
    ^ '$(ZLIB_DIR)\$(ZLIB) $(BZ2LIB) $(WINSOCK_LIB)'
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
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   135
additionalLinkLibraries_make_dot_proto
1683
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   136
    ^ '$(ZLIB_LD_ARG) $(BZ2LIB_LD_ARG)'
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   137
!
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   138
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   139
additionalRules_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   140
    ^ '
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   141
$(ZLIB):
3945
c22b1e27d53b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3928
diff changeset
   142
        cd $(ZLIB_DIR)
3966
d086178fcab2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3960
diff changeset
   143
        $(MAKE_BAT)
3945
c22b1e27d53b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3928
diff changeset
   144
        cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   145
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   146
$(BZ2LIB):
3945
c22b1e27d53b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3928
diff changeset
   147
        cd $(BZ2LIB_DIR)
3960
5039f74fe8b6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3951
diff changeset
   148
        $(MAKE_BAT) 
3945
c22b1e27d53b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3928
diff changeset
   149
        cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   150
'
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   151
!
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   152
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   153
additionalRules_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   154
    ^ '
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   155
zlib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   156
	cd $(ZLIB_DIR); $(MAKE) $(MAKE_ZLIB_ARG)
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   157
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   158
bz2lib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   159
	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
   160
'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   161
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   162
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   163
additionalTargets_bc_dot_mak
3928
d1133788cbba #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3921
diff changeset
   164
    ^ '$(ZLIB) $(BZ2LIB)'
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   165
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   166
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   167
additionalTargets_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   168
    ^ 'bz2lib zlib'
1738
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   169
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   170
    "Created: / 05-09-2006 / 16:05:12 / cg"
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   171
!
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   172
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   173
localIncludes
3928
d1133788cbba #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3921
diff changeset
   174
    ^ '-I$(ZLIB_DIR) -I$(BZ2LIB_DIR)'
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   175
1739
0b7c61afb2c8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
   176
    "Created: / 06-09-2006 / 18:18:15 / cg"
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   177
!
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   178
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   179
stcOptimizationOptions
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   180
    ^ '+optinline +optinline2 +inlinenew'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   182
    "Modified: / 21-02-2011 / 14:13:24 / cg"
3445
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   183
!
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   184
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   185
stcWarningOptions
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   186
    ^ '-warnNonStandard -warnUnused'
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   187
! !
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   188
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   189
!stx_libbasic2 class methodsFor:'description - contents'!
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   190
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   191
classNamesAndAttributes
2360
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   192
    "lists the classes which are to be included in the project.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   193
     Each entry in the list may be: a single class-name (symbol),
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   194
     or an array-literal consisting of class name and attributes.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   195
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   196
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   197
    ^ #(
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   198
        "<className> or (<className> attributes...) in load order"
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   199
        AVLTree
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   200
        AbstractBackgroundJob
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   201
        AbstractMultidimensionalArray
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   202
        ActiveObject
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   203
        ActorStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   204
        Archiver
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   205
        AutoResizingOrderedCollection
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   206
        BIG5EncodedString
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   207
        BTree
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   208
        BaseNCoder
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   209
        Bezier
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   210
        BinaryTree
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   211
        BinaryTreeNode
4813
f53aac0fa76c #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4788
diff changeset
   212
        BloomFilter
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   213
        BoltLock
4855
7c2aff47b3b0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4826
diff changeset
   214
        CRCStream
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   215
        CacheDictionary
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   216
        CachedValue
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   217
        CharacterSet
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   218
        Circle
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   219
        CollectingReadStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   220
        CollectingSharedQueueStream
5106
ec689a1d5ec8 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5098
diff changeset
   221
        CollectionBuilder
4664
8c34c5e0451a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
   222
        ComplexDoubleArray
8c34c5e0451a #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4653
diff changeset
   223
        ComplexFloatArray
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   224
        CompressionStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   225
        Cons
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   226
        ConsStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   227
        Curve
5044
19c464a93abc #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4990
diff changeset
   228
        DelayedValue
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   229
        DirectoryContents
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   230
        DoubleLink
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   231
        EllipticalArc
4583
bd009443ac2d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4567
diff changeset
   232
        ExternalInt
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   233
        ExternalLong
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   234
        FileSorter
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   235
        FileText
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   236
        FilteringStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   237
        FourByteString
4466
1c0164695bae #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4449
diff changeset
   238
        FuzzyMatcher
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   239
        GBEncodedString
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   240
        GeometricSeries
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   241
        HTMLUtilities
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   242
        HalfFloatArray
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   243
        HandlerCollection
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   244
        Heap
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   245
        IdentityBag
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   246
        IncompatibleMatrixError
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   247
        IncrementNotification
4692
eb8f3bedb816 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4664
diff changeset
   248
        IndentStream
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   249
        InterestConverterWithParameters
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   250
        InternalPipeStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   251
        Iterator
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   252
        JISEncodedString
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   253
        KSCEncodedString
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   254
        KeywordInContextIndexBuilder
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   255
        Lazy
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   256
        LazyArray
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   257
        LazyValue
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   258
        LineSegment
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   259
        List
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   260
        LoggingStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   261
        MappedCollection
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   262
        MessageChannel
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   263
        Monitor
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   264
        MultiReadStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   265
        NameLookupError
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   266
        NumberSet
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   267
        OperationQueue
5066
3e6e4e1231d8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5054
diff changeset
   268
        PersistentFileHistory
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   269
        PhoneticStringUtilities
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   270
        PluggableDictionary
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   271
        PluggableSet
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   272
        Polygon
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   273
        PowerSet
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   274
        PrinterStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   275
        PrintfScanf
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   276
        PriorityQueue
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   277
        Promise
4378
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   278
        QDouble
4990
9869649550d4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4975
diff changeset
   279
        QuadFloat
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   280
        Queue
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   281
        Random
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   282
        RandomBlumBlumShub
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   283
        RandomKISS
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   284
        RandomKISS2
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   285
        RandomMT19937
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   286
        RandomParkMiller
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   287
        RandomRDRand
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   288
        RandomTT800
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   289
        ReindexedCollection
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   290
        RunArray
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   291
        SegmentedOrderedCollection
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   292
        SelectingReadStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   293
        SequenceWithSentinel
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   294
        SequenceableCollectionSorter
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   295
        SerialPort
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   296
        SharedCollection
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   297
        Singleton
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   298
        SmallBag
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   299
        Socket
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   300
        SocketAddress
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   301
        SocketAddressInfo
4567
433d97fe8bda #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 4548
diff changeset
   302
        SocketErrorNotification
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   303
        SortedSet
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   304
        SoundStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   305
        Spline
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   306
        SplittingWriteStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   307
        Stack
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   308
        StringPattern
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   309
        StringUtilities
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   310
        TSTree
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   311
        TSTreeNode
4788
323ef8f7d6ef #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4751
diff changeset
   312
        TableData
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   313
        TerminalSession
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   314
        Text
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   315
        TextClassifier
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   316
        TextStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   317
        TreeSet
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   318
        Trie
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   319
        URI
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   320
        UUID
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   321
        UndoSupport
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   322
        UnitConverter
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   323
        UnixPTYStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   324
        ValueLink
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   325
        VirtualArray
4548
a151971d1b5b #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4534
diff changeset
   326
        VirtualDictionary
4705
1d148cc60bbe #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4692
diff changeset
   327
        WeakOrderedCollection
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   328
        ZipArchiveConstants
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   329
        #'stx_libbasic2'
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   330
        AATree
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   331
        AATreeNode
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   332
        AppletalkSocketAddress
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   333
        Arrow
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   334
        ArrowedSpline
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   335
        AutoResizingOrderedCollectionWithDefault
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   336
        BZip2Stream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   337
        BackgroundJob
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   338
        BackgroundPeriodicalJob
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   339
        BackgroundQueueProcessingJob
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   340
        Base32Coder
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   341
        Base64Coder
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   342
        BayesClassifier
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   343
        Bezier2Segment
4855
7c2aff47b3b0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4826
diff changeset
   344
        CRC16Stream
7c2aff47b3b0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4826
diff changeset
   345
        CRC32Stream
4915
5dbccded6345 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4855
diff changeset
   346
        CRC8Stream
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   347
        CacheDictionaryWithFactory
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   348
        DecNetSocketAddress
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   349
        EpsonFX1PrinterStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   350
        FilteringLineStream
5066
3e6e4e1231d8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 5054
diff changeset
   351
        Future
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   352
        HPLjetIIPrinterStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   353
        HTMLPrinterStream
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   354
        HierarchicalURI
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   355
        HostAddressLookupError
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   356
        HostNameLookupError
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   357
        IPSocketAddress
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   358
        LazyCons
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   359
        LineNumberReadStream
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   360
        Matrix
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   361
        MultiDimensionalArrayAccessor
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   362
        PostscriptPrinterStream
4609
204f887baaf8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4583
diff changeset
   363
        RandomGNUSmalltalk
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   364
        RandomGenerator
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   365
        SharedQueue
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   366
        TSMultiTree
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   367
        TSMultiTreeNode
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   368
        TimedPromise
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   369
        UDSocketAddress
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   370
        Unicode32String
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   371
        ValueDoubleLink
4826
43968cc4f6c6 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4813
diff changeset
   372
        VirtualArrayWithCache
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   373
        ZipArchive
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   374
        ZipStream
4751
e07886fad925 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4730
diff changeset
   375
        Base64UrlCoder
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   376
        FileURI
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   377
        FtpURI
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   378
        HttpURI
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   379
        IPv6SocketAddress
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   380
        SftpURI
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   381
        TwoDimensionalMatrix
4076
dbf19274c16d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3966
diff changeset
   382
        UnlimitedSharedQueue
4730
3cf48d960db4 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
   383
        HttpsURI
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   384
        SquareMatrix
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   385
        #'Matrix2_2'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   386
        #'Matrix3_3'
4076
dbf19274c16d #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3966
diff changeset
   387
        (DoubleLinkedList autoload)
4419
ee66504fb36a #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4402
diff changeset
   388
        (IdentitySkipList autoload)
4399
cbcf2fc08cf4 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
   389
        (SkipList autoload)
cbcf2fc08cf4 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4384
diff changeset
   390
        (SkipListNode autoload)
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   391
    )
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   392
!
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   393
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   394
extensionMethodNames
3905
adde823a70ca #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
   395
    "lists the extension methods which are to be included in the project.
adde823a70ca #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
   396
     Entries are 2-element array literals, consisting of class-name and selector.
adde823a70ca #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
   397
     A correponding method with real names must be present in my concrete subclasses
adde823a70ca #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
   398
     if it has extensions."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   399
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   400
    ^ #(
4382
b0b3e4b6e61e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
   401
        ArithmeticValue asQDouble
4378
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   402
        ArithmeticValue differenceFromQDouble:
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   403
        ArithmeticValue equalFromQDouble:
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   404
        ArithmeticValue lessFromQDouble:
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   405
        ArithmeticValue productFromQDouble:
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   406
        ArithmeticValue quotientFromQDouble:
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   407
        ArithmeticValue remainderFromQDouble:
cf8edd8cf540 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4362
diff changeset
   408
        ArithmeticValue sumFromQDouble:
4449
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   409
        Block deferredValue
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   410
        Block deferredValueAt:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   411
        Block futureValue
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   412
        Block futureValue:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   413
        Block futureValue:value:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   414
        Block futureValue:value:value:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   415
        Block futureValueWithArguments:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   416
        Block lazyValue
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   417
        Block lazyValue:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   418
        Block lazyValue:value:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   419
        Block lazyValue:value:value:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   420
        Block lazyValueWithArguments:
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   421
        Block promise
5d3b0d56cfd3 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4419
diff changeset
   422
        Block promiseAt:
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   423
        CharacterArray asKoelnerPhoneticCode
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   424
        CharacterArray asSoundexCode
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   425
        CharacterArray printf:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   426
        CharacterArray printf:on:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   427
        CharacterArray printfWith:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   428
        CharacterArray printfWith:with:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   429
        CharacterArray printfWith:with:with:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   430
        CharacterArray printfWith:with:with:with:
4534
9f29838d0c54 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4466
diff changeset
   431
        CharacterArray printfWith:with:with:with:with:
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   432
        CharacterArray #'printf_formatArgCount'
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   433
        CharacterArray #'printf_printArgFrom:to:withData:'
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   434
        CharacterArray #'printf_printOn:withData:'
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   435
        CharacterArray scanf:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   436
        CharacterArray #'scanf_scanArgFrom:to:format:'
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   437
        CharacterArray sscanf:
4720
e491275c5a48 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4705
diff changeset
   438
        CharacterArray urlDecoded
e491275c5a48 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4705
diff changeset
   439
        CharacterArray urlEncoded
4362
993e8c04d2ab #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4209
diff changeset
   440
        Collection asHalfFloatArray
4402
4463731ed550 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4399
diff changeset
   441
        Collection asIdentitySkipList
4362
993e8c04d2ab #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4209
diff changeset
   442
        Collection asList
993e8c04d2ab #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4209
diff changeset
   443
        Collection asRunArray
993e8c04d2ab #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4209
diff changeset
   444
        Collection asSharedCollection
4402
4463731ed550 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4399
diff changeset
   445
        Collection asSkipList
4463731ed550 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4399
diff changeset
   446
        Collection asSkipList:
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   447
        Float absDecimalPrintOn:digits:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   448
        Float absPrintOn:digits:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   449
        Float absScientificPrintOn:digits:
4382
b0b3e4b6e61e #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4378
diff changeset
   450
        Float asQDouble
4384
351df7785399 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4382
diff changeset
   451
        Integer asQDouble
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   452
        Object #'_at:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   453
        Object #'_at:at:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   454
        Object #'_at:at:at:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   455
        Object #'_at:at:at:put:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   456
        Object #'_at:at:put:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   457
        Object #'_at:put:'
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   458
        Object addInterest:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   459
        Object asDoubleLink
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   460
        Object expressInterestIn:for:sendBack:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   461
        Object interests
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   462
        Object interestsFor:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   463
        Object onChangeEvaluate:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   464
        Object onChangeSend:to:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   465
        Object removeActionsForEvent:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   466
        Object removeActionsWithReceiver:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   467
        Object removeAllActionsWithReceiver:
4975
dfb8998b95e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4915
diff changeset
   468
        Object removeDependentAndRetractInterestsFor:
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   469
        Object removeInterest:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   470
        Object retractInterestIn:for:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   471
        Object retractInterests
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   472
        Object retractInterestsFor:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   473
        Object retractInterestsForWhich:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   474
        Object retractInterestsIn:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   475
        Object trigger:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   476
        Object trigger:with:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   477
        Object triggerEvent:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   478
        Object triggerEvent:with:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   479
        Object triggerEvent:withArguments:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   480
        Object when:send:to:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   481
        Object when:send:to:with:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   482
        Object when:sendTo:
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   483
        Stream collecting:
4621
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   484
        Stream printf:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   485
        Stream printf:arguments:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   486
        Stream printf:with:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   487
        Stream printf:with:with:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   488
        Stream printf:with:with:with:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   489
        Stream printf:with:with:with:with:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   490
        Stream printf:with:with:with:with:with:
800bea9535cd #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4609
diff changeset
   491
        Stream printf:withAll:
4162
9c676f6de27e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 4076
diff changeset
   492
        Stream selecting:
5098
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   493
        'SequenceableCollection class' #'_at:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   494
        'SequenceableCollection class' #'_at:at:'
c4b4aeea9802 #OTHER by exept
Claus Gittinger <cg@exept.de>
parents: 5066
diff changeset
   495
        'SequenceableCollection class' #'_at:at:at:'
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   496
    )
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   497
! !
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   498
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   499
!stx_libbasic2 class methodsFor:'description - project information'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   500
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   501
companyName
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   502
    "Return a companyname which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   503
4207
6010972179be #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
   504
    ^ 'Claus Gittinger / eXept Software AG'
6010972179be #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
   505
6010972179be #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4189
diff changeset
   506
    "Modified: / 18-11-2016 / 11:48:36 / cg"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   507
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   508
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   509
description
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   510
    "Return a description string which will appear in nt.def / bc.def"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   511
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   512
    ^ 'Smalltalk/X Additional Basic Classes'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   513
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   514
    "Modified: / 14-09-2006 / 10:57:15 / cg"
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   515
!
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   516
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   517
legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   518
    "Return a copyright string which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   519
4209
c1651ea1e426 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4208
diff changeset
   520
    ^ 'Copyright Claus Gittinger 1988\nCopyright eXept Software AG 2012'
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   521
4209
c1651ea1e426 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4208
diff changeset
   522
    "Modified: / 18-11-2016 / 12:17:38 / cg"
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   523
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   524
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   525
productName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   526
    "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
   527
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   528
    ^ 'Smalltalk/X'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   529
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   530
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   531
!stx_libbasic2 class methodsFor:'documentation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   532
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
version
3568
6f684b01fe00 added: AutoResizingOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   534
    ^ '$Header$'
2284
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   535
!
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   536
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   537
version_CVS
3568
6f684b01fe00 added: AutoResizingOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   538
    ^ '$Header$'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   539
! !
3921
cf5719a875a1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3916
diff changeset
   540