stx_libbasic2.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Jun 2016 16:24:55 +0200
changeset 3916 d797329e07d8
parent 3905 adde823a70ca
child 3921 cf5719a875a1
permissions -rw-r--r--
BZ2Stream for bcc
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
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
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
2255
Claus Gittinger <cg@exept.de>
parents: 2254
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.
1723
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    51
"
419f90ed83cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1722
diff changeset
    52
! !
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!stx_libbasic2 class methodsFor:'description'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    56
excludedFromPreRequisites
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    57
    ^ #(
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    58
	#'exept:libcrypt'    "Rc4Cipher - referenced by RandomGenerator class>>new "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    59
	#'stx:goodies/communication'    "FTPClient - referenced by FtpURI>>writeStreamDo:create:atomic: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    60
	#'stx:libtool'    "FileBrowser - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    61
	#'stx:libview2'    "MIMETypes - referenced by Archiver::ArchiverOutputParser>>parseLine:forItemClass: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    62
	#'stx:libwidg'    "DialogBox - referenced by Archiver::CompressedFile>>compressFile:to: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    63
	#'stx:libhtml'    "HTMLParser - referenced by HTMLUtilities class>>plainTextOfHTML: "
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    64
	#'stx:goodies/webServer/htmlTree'    "HTML::TreeBuilder - referenced by HTMLPrinterStream>>initialize"
1879
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    65
    )
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    66
!
1bb6fc9f4912 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1874
diff changeset
    67
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    68
mandatoryPreRequisites
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    69
    "list packages which are mandatory as a prerequisite.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    70
     This are packages containing superclasses of my classes and classes which
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    71
     are extended by myself.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    72
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    73
     This method is generated automatically,
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    74
     by searching along the inheritance chain of all of my classes."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
    75
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
    ^ #(
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
    77
	#'stx:libbasic'    "AbstractNumberVector - superclass of HalfFloatArray"
2910
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    78
    )
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
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
    81
referencedPreRequisites
3803
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    82
    "list packages which are a prerequisite, because they contain
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    83
     classes which are referenced by my classes.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    84
     We do not need these packages as a prerequisite for compiling or loading,
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    85
     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
    86
     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
    87
     includes explicit checks for the package being present.
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    88
     This method is generated automatically,
7c8a909da4d2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3745
diff changeset
    89
     by searching all classes (and their packages) which are referenced by my classes."
2910
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
    ^ #(
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
    )
2987
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    93
!
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    94
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    95
subProjects
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    96
    "list packages which are known as subprojects.
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    97
     The generated makefile will enter those and make there as well.
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
    98
     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
    99
     for those, redefine requiredPrerequisites"
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
   100
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
   101
    ^ #(
6ed226d684ee automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2943
diff changeset
   102
    )
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
!stx_libbasic2 class methodsFor:'description - compilation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   107
additionalBaseAddressDefinition_bc_dot_mak
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   108
    "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
   109
     on win32 systems."
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   110
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   111
    ^ '
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   112
# see stdHeader_bc for LIBBASIC2_BASE
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   113
LIB_BASE=$(LIBBASIC2_BASE)
1703
24ee7963195e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1697
diff changeset
   114
'
1690
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   115
!
c422f6199c5f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1689
diff changeset
   116
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   117
additionalLinkLibraries_bc_dot_mak
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   118
"/    ^ '$(ZLIB) $(BZ2LIB)'
3589
ae0cb5a2da4e class: stx_libbasic2
Claus Gittinger <cg@exept.de>
parents: 3579
diff changeset
   119
    ^ '$(ZLIB_DIR)\$(ZLIB) $(WINSOCK_LIB)'
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   120
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   121
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   122
additionalLinkLibraries_make_dot_proto
1683
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   123
    ^ '$(ZLIB_LD_ARG) $(BZ2LIB_LD_ARG)'
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   124
!
eb117bac0f75 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1677
diff changeset
   125
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   126
additionalRules_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   127
    ^ '
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   128
$(ZLIB):
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   129
	cd $(ZLIB_DIR)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   130
	$(MAKE) $(MAKE_ZLIB_ARG) $(ZLIB)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   131
	cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   132
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   133
$(BZ2LIB):
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   134
	cd $(BZ2LIB_DIR)
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   135
	$(MAKE) $(MAKE_BZ2LIB_ARG) bz2.lib
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   136
	cd ..\..\libbasic2
1806
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   137
'
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   138
!
c319f83eade2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1791
diff changeset
   139
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   140
additionalRules_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   141
    ^ '
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   142
zlib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   143
	cd $(ZLIB_DIR); $(MAKE) $(MAKE_ZLIB_ARG)
1823
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   144
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   145
bz2lib:
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   146
	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
   147
'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   148
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   149
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   150
additionalTargets_bc_dot_mak
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   151
"/    ^ '$(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
   152
    ^ '$(ZLIB)'
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   153
!
bcba29fb4568 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1819
diff changeset
   154
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   155
additionalTargets_make_dot_proto
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   156
    ^ 'bz2lib zlib'
1738
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   157
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   158
    "Created: / 05-09-2006 / 16:05:12 / cg"
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   159
!
78ec0825259c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1732
diff changeset
   160
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   161
localIncludes
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   162
    ^ '-I$(ZLIB_DIR)'
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   163
1739
0b7c61afb2c8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1738
diff changeset
   164
    "Created: / 06-09-2006 / 18:18:15 / cg"
1732
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   165
!
f6a1de369941 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1723
diff changeset
   166
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   167
stcOptimizationOptions
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   168
    ^ '+optinline +optinline2 +inlinenew'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
2539
58371ca3591f changed: #stcOptimizationOptions
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
   170
    "Modified: / 21-02-2011 / 14:13:24 / cg"
3445
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   171
!
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   172
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   173
stcWarningOptions
Claus Gittinger <cg@exept.de>
parents: 3428
diff changeset
   174
    ^ '-warnNonStandard -warnUnused'
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   175
! !
2248
0c599f0d812c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2232
diff changeset
   176
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   177
!stx_libbasic2 class methodsFor:'description - contents'!
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   178
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   179
classNamesAndAttributes
2360
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   180
    "lists the classes which are to be included in the project.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   181
     Each entry in the list may be: a single class-name (symbol),
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   182
     or an array-literal consisting of class name and attributes.
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   183
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
15005df82bed automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   184
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   185
    ^ #(
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   186
	"<className> or (<className> attributes...) in load order"
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   187
	AVLTree
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   188
	AbstractBackgroundJob
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   189
	ActiveObject
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   190
	ActorStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   191
	Archiver
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   192
	AutoResizingOrderedCollection
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   193
	BIG5EncodedString
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   194
	BTree
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   195
	BaseNCoder
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   196
	Bezier
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   197
	BinaryTree
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   198
	BinaryTreeNode
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   199
	BitArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   200
	BoltLock
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   201
	CRC32Stream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   202
	CacheDictionary
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   203
	CachedValue
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   204
	CharacterSet
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   205
	Circle
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   206
	CollectingReadStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   207
	CollectingSharedQueueStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   208
	CompressionStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   209
	Cons
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   210
	ConsStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   211
	Curve
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   212
	DirectoryContents
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   213
	DoubleLink
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   214
	EllipticalArc
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   215
	ExternalLong
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   216
	FileSorter
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   217
	FileText
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   218
	FilteringStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   219
	FourByteString
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   220
	Future
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   221
	GBEncodedString
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   222
	GeometricSeries
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   223
	HTMLUtilities
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   224
	HalfFloatArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   225
	HandlerCollection
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   226
	Heap
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   227
	IdentityBag
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   228
	IncrementNotification
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   229
	InterestConverterWithParameters
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   230
	InternalPipeStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   231
	Iterator
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   232
	JISEncodedString
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   233
	KSCEncodedString
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   234
	KeywordInContextIndexBuilder
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   235
	Lazy
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   236
	LazyArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   237
	LazyValue
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   238
	LineSegment
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   239
	List
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   240
	LoggingStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   241
	MacPlistBinaryDecoder
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   242
	MappedCollection
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   243
	MessageChannel
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   244
	Monitor
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   245
	MultiReadStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   246
	NameLookupError
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   247
	NumberSet
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   248
	OperationQueue
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   249
	PhoneticStringUtilities
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   250
	PluggableDictionary
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   251
	PluggableSet
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   252
	Polygon
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   253
	PowerSet
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   254
	PrinterStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   255
	PrintfScanf
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   256
	PriorityQueue
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   257
	Promise
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   258
	Queue
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   259
	Random
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   260
	RandomBlumBlumShub
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   261
	RandomKISS
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   262
	RandomKISS2
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   263
	RandomMT19937
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   264
	RandomParkMiller
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   265
	RandomRDRand
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   266
	RandomTT800
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   267
	ReindexedCollection
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   268
	RunArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   269
	SegmentedOrderedCollection
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   270
	SelectingReadStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   271
	SequenceWithSentinel
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   272
	SequenceableCollectionSorter
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   273
	SerialPort
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   274
	SharedCollection
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   275
	Singleton
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   276
	SmallBag
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   277
	Socket
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   278
	SocketAddress
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   279
	SocketAddressInfo
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   280
	SortedSet
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   281
	SoundStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   282
	Spline
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   283
	SplittingWriteStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   284
	Stack
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   285
	StringPattern
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   286
	StringUtilities
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   287
	TSTree
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   288
	TSTreeNode
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   289
	TerminalSession
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   290
	Text
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   291
	TextClassifier
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   292
	TextStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   293
	TreeSet
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   294
	Trie
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   295
	URI
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   296
	UUID
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   297
	UnboxedIntegerArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   298
	UndoSupport
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   299
	UnitConverter
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   300
	UnixPTYStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   301
	ValueLink
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   302
	VirtualArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   303
	ZipArchiveConstants
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   304
	#'stx_libbasic2'
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   305
	AATree
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   306
	AATreeNode
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   307
	AppletalkSocketAddress
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   308
	Arrow
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   309
	ArrowedSpline
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   310
	AutoResizingOrderedCollectionWithDefault
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   311
	BZip2Stream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   312
	BackgroundJob
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   313
	BackgroundPeriodicalJob
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   314
	BackgroundQueueProcessingJob
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   315
	Base32Coder
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   316
	Base64Coder
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   317
	BayesClassifier
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   318
	Bezier2Segment
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   319
	BooleanArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   320
	CacheDictionaryWithFactory
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   321
	DecNetSocketAddress
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   322
	EpsonFX1PrinterStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   323
	FilteringLineStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   324
	HPLjetIIPrinterStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   325
	HTMLPrinterStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   326
	HierarchicalURI
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   327
	HostAddressLookupError
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   328
	HostNameLookupError
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   329
	IPSocketAddress
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   330
	IntegerArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   331
	LazyCons
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   332
	LineNumberReadStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   333
	LongIntegerArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   334
	PostscriptPrinterStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   335
	RandomGenerator
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   336
	SharedQueue
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   337
	SignedIntegerArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   338
	SignedLongIntegerArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   339
	SignedWordArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   340
	TSMultiTree
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   341
	TSMultiTreeNode
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   342
	TimedPromise
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   343
	UDSocketAddress
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   344
	Unicode32String
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   345
	ValueDoubleLink
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   346
	WordArray
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   347
	ZipArchive
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   348
	ZipStream
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   349
	FileURI
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   350
	FtpURI
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   351
	HttpURI
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   352
	IPv6SocketAddress
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   353
	SftpURI
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   354
    )
2254
b5e6ad2d0f4b automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2248
diff changeset
   355
!
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   356
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   357
extensionMethodNames
3905
adde823a70ca #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3895
diff changeset
   358
    "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
   359
     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
   360
     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
   361
     if it has extensions."
2600
1baebd09201c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2587
diff changeset
   362
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   363
    ^ #(
3916
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   364
	CharacterArray asKoelnerPhoneticCode
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   365
	CharacterArray asSoundexCode
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   366
	CharacterArray printf:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   367
	CharacterArray printf:on:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   368
	CharacterArray printfWith:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   369
	CharacterArray printfWith:with:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   370
	CharacterArray printfWith:with:with:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   371
	CharacterArray printfWith:with:with:with:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   372
	CharacterArray #'printf_formatArgCount'
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   373
	CharacterArray #'printf_printArgFrom:to:withData:'
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   374
	CharacterArray #'printf_printOn:withData:'
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   375
	CharacterArray scanf:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   376
	CharacterArray #'scanf_scanArgFrom:to:format:'
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   377
	CharacterArray sscanf:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   378
	Float absDecimalPrintOn:digits:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   379
	Float absPrintOn:digits:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   380
	Float absScientificPrintOn:digits:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   381
	Object addInterest:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   382
	Object asDoubleLink
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   383
	Object expressInterestIn:for:sendBack:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   384
	Object interests
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   385
	Object interestsFor:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   386
	Object onChangeEvaluate:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   387
	Object onChangeSend:to:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   388
	Object removeActionsForEvent:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   389
	Object removeActionsWithReceiver:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   390
	Object removeAllActionsWithReceiver:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   391
	Object removeInterest:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   392
	Object retractInterestIn:for:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   393
	Object retractInterests
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   394
	Object retractInterestsFor:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   395
	Object retractInterestsForWhich:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   396
	Object retractInterestsIn:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   397
	Object trigger:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   398
	Object trigger:with:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   399
	Object triggerEvent:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   400
	Object triggerEvent:with:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   401
	Object triggerEvent:withArguments:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   402
	Object when:send:to:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   403
	Object when:send:to:with:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   404
	Object when:sendTo:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   405
	Stream collecting:
d797329e07d8 BZ2Stream for bcc
Claus Gittinger <cg@exept.de>
parents: 3905
diff changeset
   406
	Stream selecting:
1767
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   407
    )
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   408
! !
c167bc410cb5 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1747
diff changeset
   409
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   410
!stx_libbasic2 class methodsFor:'description - project information'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   411
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   412
companyName
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   413
    "Return a companyname which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   414
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   415
    ^ 'eXept Software AG'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   416
!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   417
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   418
description
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   419
    "Return a description string which will appear in nt.def / bc.def"
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   420
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   421
    ^ 'Smalltalk/X Additional Basic Classes'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   422
1740
9a2696245a64 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1739
diff changeset
   423
    "Modified: / 14-09-2006 / 10:57:15 / cg"
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   424
!
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   425
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   426
legalCopyright
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   427
    "Return a copyright string which will appear in <lib>.rc"
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   428
3579
701546fb6d6a copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3568
diff changeset
   429
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 2012'
2255
Claus Gittinger <cg@exept.de>
parents: 2254
diff changeset
   430
2750
50f786768873 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2729
diff changeset
   431
    "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
   432
!
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   433
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   434
productName
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   435
    "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
   436
e7f29980eed5 Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 2887
diff changeset
   437
    ^ 'Smalltalk/X'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   438
! !
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   439
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   440
!stx_libbasic2 class methodsFor:'documentation'!
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   441
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   442
version
3568
6f684b01fe00 added: AutoResizingOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   443
    ^ '$Header$'
2284
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   444
!
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   445
141696a39190 changed: #classNamesAndAttributes
Claus Gittinger <cg@exept.de>
parents: 2277
diff changeset
   446
version_CVS
3568
6f684b01fe00 added: AutoResizingOrderedCollection
Claus Gittinger <cg@exept.de>
parents: 3504
diff changeset
   447
    ^ '$Header$'
1665
07e01525e60b initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   448
! !