stx_libbasic3.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 31 May 2016 22:19:30 +0100
branchjv
changeset 4041 71b5dc4ee4c0
parent 4024 aeb721b75bb8
child 4166 66a7a47f9253
permissions -rw-r--r--
Added `SystemProfiler` from (now obsolete) package stx:libprofiler. Class `SystemProfiler` only provides an access to system profiler API's. In-VM bytecode counting profiler has been obsoleted.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     1
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     3
              All Rights Reserved
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     4
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     5
 This software is furnished under a license and may be used
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     6
 only in accordance with the terms of that license and with the
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     8
 be provided or otherwise made available to, or used by, any
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
     9
 other person.  No title to or ownership of the software is
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    10
 hereby transferred.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    11
"
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
3705
0cadf13dd7ea initial checkin
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
    14
"{ NameSpace: Smalltalk }"
0cadf13dd7ea initial checkin
Claus Gittinger <cg@exept.de>
parents: 3672
diff changeset
    15
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
LibraryDefinition subclass:#stx_libbasic3
2771
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    17
	instanceVariableNames:''
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    18
	classVariableNames:''
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    19
	poolDictionaries:''
f3492f31da4e automatic checkIn
vrany
parents: 2761
diff changeset
    20
	category:'* Projects & Packages *'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    23
!stx_libbasic3 class methodsFor:'documentation'!
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    24
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    25
copyright
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    26
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    28
              All Rights Reserved
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    29
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    30
 This software is furnished under a license and may be used
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    31
 only in accordance with the terms of that license and with the
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    33
 be provided or otherwise made available to, or used by, any
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    34
 other person.  No title to or ownership of the software is
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    35
 hereby transferred.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    36
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    37
!
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    38
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    39
documentation
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    40
"
3590
cca2c4a7b6de class: stx_libbasic3
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
    41
    Package documentation:
cca2c4a7b6de class: stx_libbasic3
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
    42
3802
e75fc109ee4d class: stx_libbasic3
Claus Gittinger <cg@exept.de>
parents: 3723
diff changeset
    43
    This library contains source-code-management, packaging, change and history related stuff.
3590
cca2c4a7b6de class: stx_libbasic3
Claus Gittinger <cg@exept.de>
parents: 3569
diff changeset
    44
    It is normally not required in end-user stand alone applications.
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    45
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    46
! !
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!stx_libbasic3 class methodsFor:'description'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    50
excludedFromPreRequisites
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    51
    ^ #(
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    52
        #'stx:goodies/refactoryBrowser/parser'    "ParseTreeSearcher - referenced by HTMLDocGenerator>>methodCommentOf: "
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    53
        #'stx:goodies/refactoryBrowser/lint'   
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    54
        #'stx:goodies/refactoryBrowser/browser'
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    55
        #'stx:goodies/webServer'    "HTTPRequest - referenced by HTMLDocGenerator>>generateClassDocReferenceFor:text:autoloading: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    56
        #'stx:goodies/xml/vw'    "XML::SourceScannerNodeBuilder - referenced by ChangeSet class>>fromXMLStream: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    57
        #'stx:libcomp'    "Parser - referenced by MessageTracer class>>wrapClass:selector:onEntry:onExit: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    58
        #'stx:libcompat'    "SystemWindow - referenced by MethodFinder class>>methodFor: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    59
        #'stx:libdb'    "SQL::SQLError - referenced by StoreSourceCodeManager class>>connectToDatabase "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    60
        #'stx:libtool'    "Diff3TextView - referenced by CVSSourceCodeManager class>>checkin:text:directory:module:logMessage:force: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    61
        #'stx:libview'    "Color - referenced by CVSSourceCodeManager class>>checkin:text:directory:module:logMessage:force: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    62
        #'stx:libview2'    "ValueHolder - referenced by MessageTracer class>>trapModificationsIn:selectors:filter: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    63
        #'stx:libwidg'    "DialogBox - referenced by SourceCodeManagerUtilities class>>askForExistingRevision:title:class:manager:module:package:fileName: "
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    64
        #'stx:libwidg2'    "CheckBox - referenced by SourceCodeManagerUtilities class>>checkAndWarnAboutBadMessagesInClass:checkAgainHolder: "
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    65
        #'stx:libdb/libodbc'    "SQL::ODBCSession - referenced by StoreSourceCodeManager class>>tryToConnectToDatabase: "
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    66
        #'stx:libdb/libsqlite'    "SQLiteConnection - referenced by DataBaseSourceCodeManager class>>openSQLite: "
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    67
    )
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    68
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    69
    "Modified: / 29-05-2014 / 17:00:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    70
!
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
    71
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    72
mandatoryPreRequisites
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    73
    "list packages which are mandatory as a prerequisite.
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    74
     This are packages containing superclasses of my classes and classes which
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    75
     are extended by myself.
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    76
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    77
     This method is generated automatically,
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    78
     by searching along the inheritance chain of all of my classes."
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    79
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    80
    ^ #(
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    81
        #'stx:libbasic'    "AbstractSourceFileWriter - superclass of BeeSourceWriter"
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    82
    )
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    83
!
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
    84
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    85
referencedPreRequisites
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    86
    "list packages which are a prerequisite, because they contain
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    87
     classes which are referenced by my classes.
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    88
     We do not need these packages as a prerequisite for compiling or loading,
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    89
     however, a class from it may be referenced during execution and having it
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    90
     unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    91
     includes explicit checks for the package being present.
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    92
     This method is generated automatically,
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    93
     by searching all classes (and their packages) which are referenced by my classes."
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    94
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
    95
    ^ #(
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
    96
        #'stx:libbasic2'    "HTMLUtilities - referenced by HTMLDocGenerator>>generateClassDocReferenceFor:text:autoloading:"
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
    97
    )
4041
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
    98
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
    99
    "Modified: / 31-05-2016 / 23:19:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3569
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   100
!
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   101
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   102
subProjects
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   103
    "list packages which are known as subprojects. 
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   104
     The generated makefile will enter those and make there as well.
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   105
     However: they are not forced to be loaded when a package is loaded; 
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   106
     for those, redefine requiredPrerequisites."
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   107
bfd632885261 Added lint-based check for stc bugs to ProjectChecker (#checkMethodSTCCompilability2:)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3559
diff changeset
   108
    ^ #(
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   109
    )
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   110
! !
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   111
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   112
!stx_libbasic3 class methodsFor:'description - compilation'!
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   113
2116
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   114
additionalBaseAddressDefinition_bc_dot_mak
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   115
    "this is an optional definition, which (if present) may speed up the dll-loading a little
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   116
     on win32 systems."
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   117
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   118
    ^ '
1926
7ebda08994ea Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1853
diff changeset
   119
# see stdHeader_bc for LIBBASIC3_BASE
2116
e115ae36c395 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   120
LIB_BASE=$(LIBBASIC3_BASE)
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   121
'
3641
Claus Gittinger <cg@exept.de>
parents: 3616
diff changeset
   122
!
Claus Gittinger <cg@exept.de>
parents: 3616
diff changeset
   123
4041
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   124
additionalRules_bc_dot_mak
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   125
    "allows for additional static libraries to be added to the bc.mak file.
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   126
     Subclasses may redefine this"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   127
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   128
    ^ '
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   129
stx_libbasic3-config.h: stx_libbasic3-config.bat
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   130
        call stx_libbasic3-config.bat
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   131
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   132
clean::
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   133
        del stx_libbasic3-config.h
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   134
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   135
'
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   136
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   137
    "Created: / 11-11-2012 / 12:22:21 / jv"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   138
    "Modified: / 31-05-2016 / 23:18:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   139
!
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   140
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   141
additionalRules_make_dot_proto
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   142
    "allows for additional rules to be added to the make.proto file."
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   143
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   144
    ^ '
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   145
stx_libbasic3-config.h: stx_libbasic3-config.sh
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   146
        ./stx_libbasic3-config.sh
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   147
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   148
clean::
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   149
        rm -f stx_libbasic3-config.h
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   150
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   151
'
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   152
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   153
    "Created: / 01-11-2012 / 22:35:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   154
    "Modified: / 31-05-2016 / 23:18:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   155
!
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   156
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   157
additionalTargets_bc_dot_mak
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   158
    "obsolete - kept for compatibility with old project files"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   159
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   160
   ^ 'stx_libbasic3-config.h'
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   161
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   162
    "Created: / 09-11-2012 / 12:14:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   163
    "Modified: / 31-05-2016 / 22:59:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   164
!
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   165
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   166
additionalTargets_make_dot_proto
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   167
    "allows for additional targets to be added to the make.proto file."
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   168
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   169
    ^ 'stx_libbasic3-config.h'
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   170
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   171
    "Created: / 01-11-2012 / 22:35:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   172
    "Modified: / 31-05-2016 / 22:59:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   173
!
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   174
3641
Claus Gittinger <cg@exept.de>
parents: 3616
diff changeset
   175
stcWarningOptions
Claus Gittinger <cg@exept.de>
parents: 3616
diff changeset
   176
    ^ '-warnNonStandard -warnUnused'
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   177
! !
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   178
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   179
!stx_libbasic3 class methodsFor:'description - contents'!
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
   180
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   181
classNamesAndAttributes
2277
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   182
    "lists the classes which are to be included in the project.
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   183
     Each entry in the list may be: a single class-name (symbol),
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   184
     or an array-literal consisting of class name and attributes.
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   185
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
a510a862841f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2222
diff changeset
   186
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
    ^ #(
1943
0f843e4c315c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1926
diff changeset
   188
        "<className> or (<className> attributes...) in load order"
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   189
        AbstractSourceCodeManager
3921
243f926d6101 Some work on Bee project exporter
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3920
diff changeset
   190
        BeeProjectWriter
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   191
        BeeSourceWriter
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   192
        CallChain
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   193
        Change
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   194
        ChangeDeltaInformation
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   195
        ChangeNotificationParameter
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   196
        ChangeSet
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   197
        ChangeSetDiff
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   198
        ChangeSetDiffComponent
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   199
        ClassOrganizer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   200
        HTMLDocGenerator
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   201
        HistoryManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   202
        MessageTally
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   203
        MessageTracer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   204
        MethodFinder
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   205
        ProfileTree
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   206
        ProjectChecker
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   207
        ProjectProblem
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   208
        SourceCodeCache
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   209
        SourceCodeManagerError
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   210
        SourceCodeManagerUtilities
3559
99d5e2516e44 Added class SystemEnvironment
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3530
diff changeset
   211
        SystemEnvironment
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   212
        SystemOrganizer
4041
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   213
        SystemProfiler
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   214
        TraceBuffer
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   215
        VersionInfo
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   216
        WrappedMethod
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   217
        #'stx_libbasic3'
3921
243f926d6101 Some work on Bee project exporter
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3920
diff changeset
   218
        BeeProjectDefinitionWriter
243f926d6101 Some work on Bee project exporter
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3920
diff changeset
   219
        BeeProjectSourceWriter
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   220
        CVSSourceCodeManager
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   221
        CVSVersionInfo
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   222
        ChangeSetDiffEntry
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   223
        ChangeSetDiffSet
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   224
        ClassChange
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   225
        CompositeChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   226
        DataBaseSourceCodeManager
3672
909916af00ee initial checkin
Claus Gittinger <cg@exept.de>
parents: 3641
diff changeset
   227
        DataBaseSourceCodeManagerUtilities
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   228
        DoItChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   229
        FileBasedSourceCodeManager
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   230
        FileInChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   231
        GitSourceCodeManager
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   232
        InvalidChange
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   233
        MercurialSourceCodeManager
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   234
        MethodChangeNotificationParameter
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   235
        NameSpaceCreationChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   236
        OtherChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   237
        PerforceSourceCodeManager
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   238
        SVNVersionInfo
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   239
        SourceCodeManagerUtilitiesForContainerBasedManagers
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   240
        SourceCodeManagerUtilitiesForWorkspaceBasedManagers
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   241
        StoreSourceCodeManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   242
        ClassCategoryChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   243
        ClassClassVariableChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   244
        ClassCommentChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   245
        ClassDefinitionChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   246
        ClassInitializeChange
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   247
        ClassInstVarDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   248
        ClassOtherChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   249
        ClassPrimitiveChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   250
        ClassRemoveChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   251
        ClassRenameChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   252
        InfoChange
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   253
        MethodCategoryChangeNotificationParameter
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   254
        MethodCategoryRenameChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   255
        MethodChange
3530
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   256
        MethodRemoveChangeNotificationParameter
91cc82c84d30 Added ClassInitializeChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3481
diff changeset
   257
        MethodTrapChangeNotificationParameter
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   258
        TimestampChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   259
        ClassPrimitiveDefinitionsChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   260
        ClassPrimitiveFunctionsChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   261
        ClassPrimitiveVariablesChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   262
        MethodCategoryChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   263
        MethodDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   264
        MethodPackageChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   265
        MethodPrivacyChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   266
        MethodRemoveChange
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   267
        (TraitClassTraitDefinitionChange autoload)
3008
9c4bfb96451f automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2992
diff changeset
   268
        (TraitDefinitionChange autoload)
4041
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   269
        (VSEFileSourceWriter autoload)
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   270
        (VSEChunkFileSourceWriter autoload)
3921
243f926d6101 Some work on Bee project exporter
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3920
diff changeset
   271
        (VSEPackageFileSourceWriter autoload)
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   272
        (VisualAgeChunkFileSourceWriter autoload)
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   273
    )
4041
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   274
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   275
    "Modified: / 31-05-2016 / 23:19:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   276
!
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   277
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   278
extensionMethodNames
4041
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   279
    "lists the extension methods which are to be included in the project.
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   280
     Entries are 2-element array literals, consisting of class-name and selector.
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   281
     A correponding method with real names must be present in my concrete subclasses
71b5dc4ee4c0 Added `SystemProfiler` from (now obsolete) package stx:libprofiler.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 4024
diff changeset
   282
     if it has extensions."
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   283
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   284
    ^ #(
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   285
        UserPreferences historyManagerModificationLimit
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   286
        UserPreferences historyManagerModificationLimit:
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   287
        UserPreferences historyManagerSignature
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   288
        UserPreferences historyManagerSignature:
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   289
        UserPreferences historyManagerSignatures
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   290
        UserPreferences historyManagerSignatures:
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   291
        UserPreferences historyManagerAllowEditOfHistory
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   292
        UserPreferences managerPerMatchingModuleDefinitions
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   293
        UserPreferences managerPerMatchingModuleDefinitions:
3481
694bd169f215 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3257
diff changeset
   294
        'ConfigurableFeatures class' hasProjectChecker
694bd169f215 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3257
diff changeset
   295
        CompiledCode setTracelog
3616
510c821be4f8 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3590
diff changeset
   296
        ExecutableFunction isMocked
1968
6820b9e820e2 fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 1959
diff changeset
   297
    )
1738
e63af0d84b52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
   298
! !
e63af0d84b52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
   299
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
!stx_libbasic3 class methodsFor:'description - project information'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   302
companyName
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   303
    "Return a companyname which will appear in <lib>.rc"
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   304
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   305
    ^ 'eXept Software AG'
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   306
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   307
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
description
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
    "Return a description string which will appear in nt.def / bc.def"
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   310
1789
cd1e0942f4c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   311
    ^ 'Smalltalk/X Additional Developer Basic Classes'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   312
1789
cd1e0942f4c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   313
    "Modified: / 14-09-2006 / 10:57:32 / cg"
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   314
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   315
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   316
legalCopyright
1682
f7b542414914 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
   317
    "Return a copyright string which will appear in <lib>.rc"
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   318
3881
fbcad0b96955 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3802
diff changeset
   319
    ^ 'Copyright Claus Gittinger 1988-2012\nCopyright eXept Software AG 2012'
1976
a50d8dd04223 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1975
diff changeset
   320
2837
843d4a4075c8 changed: #legalcopyright
Claus Gittinger <cg@exept.de>
parents: 2811
diff changeset
   321
    "Modified: / 18-07-2012 / 19:11:26 / cg"
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   322
!
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   323
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   324
productName
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   325
    "Return a product name which will appear in <lib>.rc"
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   326
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   327
    ^ 'Smalltalk/X'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   330
!stx_libbasic3 class methodsFor:'description - svn'!
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   331
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   332
svnRepositoryUrlString
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   333
    "Return a SVN repository URL of myself.
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   334
     (Generated since 2011-04-08)
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   335
     Do not make the string shorter!!!!!! We have to use fixed-length keyword!!!!!!
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   336
    "        
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   337
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   338
    ^ '$URL:: https://vranyj1@swing.fit.cvut.cz/svn/stx/libbasic3/branches/jv/stx_libbasic3.st                                       $'
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   339
!
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   340
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   341
svnRevisionNr
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   342
    "Return a SVN revision number of myself.
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   343
     This number is updated after a commit"
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   344
3117
28b188631dcb Now preRequiites are separated in mandatoryPreRequisites and referencedPreRequisites
Stefan Vogel <sv@exept.de>
parents: 3008
diff changeset
   345
    ^ "$SVN-Revision:"'Nicht versioniertes Verzeichnis'"$"
2890
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   346
! !
104145ca58fd automatic checkIn
vrany
parents: 2863
diff changeset
   347
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   348
!stx_libbasic3 class methodsFor:'documentation'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   349
2664
5c6195fa9f1e automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2655
diff changeset
   350
version
3881
fbcad0b96955 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3802
diff changeset
   351
    ^ '$Header$'
2222
5d9cfb01969f automatic checkIn
fm
parents: 2155
diff changeset
   352
!
5d9cfb01969f automatic checkIn
fm
parents: 2155
diff changeset
   353
4014
ec3181cbcb9e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3917
diff changeset
   354
version_CVS
ec3181cbcb9e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3917
diff changeset
   355
    ^ '$Header$'
ec3181cbcb9e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3917
diff changeset
   356
!
ec3181cbcb9e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3917
diff changeset
   357
3850
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   358
version_HG
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   359
    ^ '$Changeset: <not expanded> $'
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   360
!
461c0b054a4f Added Bee source writer (both for inidividual classes and for project sources)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3838
diff changeset
   361
2367
cdf165ed6951 Jan's changes
vrany
parents: 2339
diff changeset
   362
version_SVN
3881
fbcad0b96955 copyright messages updated
Claus Gittinger <cg@exept.de>
parents: 3802
diff changeset
   363
    ^ '$Id$'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   364
! !
2992
081f706d6ebe automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2964
diff changeset
   365