stx_libtool.st
author Stefan Vogel <sv@exept.de>
Tue, 05 Jul 2011 14:59:30 +0200
changeset 10168 1c19c9d0cf85
parent 10162 df7205fc31da
child 10216 5810d4208626
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     1
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
9713
e87524465f36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9419
diff changeset
     3
              All Rights Reserved
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     4
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     5
 This software is furnished under a license and may be used
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     6
 only in accordance with the terms of that license and with the
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     9
 other person.  No title to or ownership of the software is
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    10
 hereby transferred.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    11
"
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libtool
9731
5141590e17f6 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 9713
diff changeset
    15
	instanceVariableNames:''
5141590e17f6 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 9713
diff changeset
    16
	classVariableNames:''
5141590e17f6 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 9713
diff changeset
    17
	poolDictionaries:''
5141590e17f6 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 9713
diff changeset
    18
	category:'* Projects & Packages *'
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    21
!stx_libtool class methodsFor:'documentation'!
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    22
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    23
copyright
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    24
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
9713
e87524465f36 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9419
diff changeset
    26
              All Rights Reserved
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    27
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    28
 This software is furnished under a license and may be used
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    29
 only in accordance with the terms of that license and with the
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    31
 be provided or otherwise made available to, or used by, any
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    32
 other person.  No title to or ownership of the software is
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    33
 hereby transferred.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    34
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    35
!
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    36
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    37
documentation
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    38
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    39
    Build-Information for creation of the st/x standard library: stx_libtool.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    40
    This library contains developer tools.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    41
"
8944
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    42
!
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    43
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    44
extensionsVersion_CVS
10168
1c19c9d0cf85 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10162
diff changeset
    45
    ^ '$Header: /cvs/stx/stx/libtool/stx_libtool.st,v 1.55 2011-07-05 12:59:30 stefan Exp $'
8944
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    46
!
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    47
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    48
extensionsVersion_SVN
315d7022155d automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8830
diff changeset
    49
    ^ 'Id:'
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    50
! !
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
!stx_libtool class methodsFor:'description'!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
7930
19656d40a181 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7893
diff changeset
    54
excludedFromPreRequisites
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    55
    "list all packages which should be ignored in the automatic
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    56
     preRequisites scan. See #preRequisites for more."
7659
cafa86044c98 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7656
diff changeset
    57
cafa86044c98 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7656
diff changeset
    58
    ^ #(
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    59
        #'stx:goodies/xml/stx'    "XMLCoder - referenced by Tools::NewSystemBrowser>>selectorMenuFileOutXMLAs "
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    60
        #'stx:libsvn'    "SVN::RepositoryManager - referenced by NewLauncher>>updateInfo "
10162
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    61
        #'exept:CC'    "CBrowser::Browser - referenced by FileBrowser>>hasCBrowser "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    62
        #'exept:xml/inspector'    "XML::XMLInspector - referenced by AbstractFileBrowser>>inspectXmlFile "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    63
        #'stx:libjava'    "Java - referenced by FileBrowser>>fileRemoveFromJavaSourcePath "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    64
        #'stx:libjavascript'    "JavaScriptMetaclass - referenced by Tools::NewSystemBrowser>>classMenuNewJavaScriptClass "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    65
        #'stx:libtool2'    "SnapShotImage - referenced by SystemBrowser class>>openOnSnapShotImage: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    66
        #'stx:libdb'    "SQL::SQLError - referenced by StoreSourceCodeManagementSettingsAppl>>tryToConnectTo: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    67
        #'stx:libhtml'    "HTMLDocumentView - referenced by FileBrowser>>nonBinaryFileAction: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    68
        #'stx:clients/Demos'    "Demos::ChickenFun - referenced by NewLauncher>>chickenFunIsRunning "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    69
        #'stx:clients/MailTool'    "SendMailTool - referenced by DebugView>>initializeButtonsIn: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    70
        #'stx:clients/Tools'    "ZipTool - referenced by AbstractFileBrowser>>openZipTool "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    71
        #'stx:goodies/communication'    "HTTPInterface - referenced by Tools::ProjectLoader>>doUpdateFromNetwork "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    72
        #'stx:goodies/rdoit'    "RDoItServer - referenced by AbstractSettingsApplication::RDoItServerSettingsAppl>>basicSaveSettings "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    73
        #'stx:goodies/refactoryBrowser/browser'    "MethodNameDialog - referenced by Tools::NewSystemBrowser>>renameMethod:in: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    74
        #'stx:goodies/refactoryBrowser/changes'    "CompositeRefactoryChange - referenced by Tools::NewSystemBrowser>>moveOrCopyMethods:toClass:moveOrCopy: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    75
        #'stx:goodies/refactoryBrowser/helpers'    "RBAbstractClass - referenced by Tools::NewSystemBrowser>>handlingRefactoringErrorDo: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    76
        #'stx:goodies/refactoryBrowser/lint'    "ParseTreeLintRule - referenced by Tools::ClassChecker>>guardingClause "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    77
        #'stx:goodies/refactoryBrowser/refactoring'    "PushDownClassVariableRefactoring - referenced by Tools::NewSystemBrowser>>codeMenuPushDownClassVariable:inClass: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    78
        #'stx:goodies/sif'    "SmalltalkInterchangeFileManager - referenced by Tools::NewSystemBrowser>>projectMenuFileOutAsWithFormat: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    79
        #'stx:goodies/simpleServices'    "WindowMigrationServer - referenced by AbstractSettingsApplication::MiscCommunicationSettingsAppl>>hasUnsavedChanges "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    80
        #'stx:goodies/soap'    "SOAP::SoapHttpModule - referenced by AbstractLauncherApplication::LauncherDialogs class>>communicationsSettings "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    81
        #'stx:goodies/soap/examples'    "SOAP::BabelFishClient - referenced by WorkspaceApplication>>babelFishTranslate: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    82
        #'stx:goodies/sunit'    "TestCase - referenced by Tools::NewSystemBrowser>>browseMenuTestCaseClasses "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    83
        #'stx:goodies/webServer'    "HTTPService - referenced by SmalltalkCodeGeneratorTool>>createDocumentationMethodFor: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    84
        #'stx:goodies/webServer/ui'    "HTTPServerSettingsAppl - referenced by AbstractSettingsApplication::HTTPStartServerSettingsApplication>>hasCreatedServer "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
    85
        #'stx:goodies/xml/vw'    "XML::XMLParser - referenced by FileApplicationNoteBook::XMLViewApplication>>updateXMLTree "
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    86
    )
7659
cafa86044c98 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7656
diff changeset
    87
!
cafa86044c98 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7656
diff changeset
    88
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    89
preRequisites
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    90
    "list all required packages.
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    91
     This list can be maintained manually or (better) generated and
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    92
     updated by scanning the superclass hierarchies and looking for
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    93
     global variable accesses. (the browser has a menu function for that)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    94
     Howevery, often too much is found, and you may want to explicitely
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    95
     exclude individual packages in the #excludedFromPrerequisites method."
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    96
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    97
    ^ #(
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    98
        #'stx:goodies/refactoryBrowser/parser'    "RBProgramNodeVisitor - superclass of Tools::BreakpointBrowser::MessageArgumentExtractor "
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
    99
        #'stx:libbasic'    "Object - superclass of VersionDiffBrowser::ClassChangeSet "
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   100
        #'stx:libbasic2'    "List - superclass of AbstractFileBrowser::DirectoryHistory "
10162
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   101
        #'stx:libbasic3'    "MessageTally - superclass of Tools::Profiler "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   102
        #'stx:libboss'    "BinaryOutputManager - referenced by Tools::Profiler>>storeStatisticsOn: "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   103
        #'stx:libcomp'    "Parser - superclass of SyntaxHighlighter2 "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   104
        #'stx:libui'    "MenuComponentSpec - superclass of EditFieldWithCompletionSpec "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   105
        #'stx:libview'    "SimpleView - superclass of InspectorView "
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   106
        #'stx:libview2'    "SimpleDialog - superclass of FileDialog "
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   107
        #'stx:libwidg'    "DialogBox - superclass of AboutBox "
10162
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   108
        #'stx:libwidg2'    "SelectionInListModelView - superclass of Tools::CodeCompletionMenu "
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   109
        #'stx:libwidg3'    "ClockView - referenced by WorkspaceApplication>>addStopWatch "
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   110
    )
7306
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   111
! !
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   112
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   113
!stx_libtool class methodsFor:'description - compilation'!
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   114
8712
ca1a240c839a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8671
diff changeset
   115
additionalBaseAddressDefinition_bc_dot_mak
ca1a240c839a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8671
diff changeset
   116
    "this is an optional definition, which (if present) may speed up the dll-loading a little
ca1a240c839a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8671
diff changeset
   117
     on win32 systems."
ca1a240c839a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8671
diff changeset
   118
7306
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   119
    ^ '
7577
9769c6225ff7 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 7448
diff changeset
   120
# see stdHeader_bc for LIBTOOL_BASE
8712
ca1a240c839a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8671
diff changeset
   121
LIB_BASE=$(LIBTOOL_BASE)
7306
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   122
'
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   123
! !
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   124
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   125
!stx_libtool class methodsFor:'description - contents'!
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
   126
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
classNamesAndAttributes
9203
9e5f512a75a7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8944
diff changeset
   128
    "lists the classes which are to be included in the project.
9e5f512a75a7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8944
diff changeset
   129
     Each entry in the list may be: a single class-name (symbol),
9e5f512a75a7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8944
diff changeset
   130
     or an array-literal consisting of class name and attributes.
9e5f512a75a7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8944
diff changeset
   131
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
9e5f512a75a7 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 8944
diff changeset
   132
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
    ^ #(
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   134
        "<className> or (<className> attributes...) in load order"
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   135
        AboutBox
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   136
        AbstractFileApplicationNoteBookComponent
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   137
        AbstractFileBrowser
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   138
        AbstractLauncherApplication
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   139
        (AbstractRevisionItem autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   140
        AbstractSettingsApplication
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   141
        (AbstractVersionDiffBrowserItem autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   142
        (ApplicationBuilder autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   143
        Bookmark
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   144
        BookmarkBar
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   145
        BookmarkEditor
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   146
        BookmarkList
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   147
        BookmarkListEditor
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   148
        BookmarkVisitor
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   149
        BookmarksEditDialog
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   150
        BrowserView
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   151
        (ChangeSetBrowser autoload)
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   152
        ChangesBrowser
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   153
        (ClassInspectorView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   154
        (ClassItem autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   155
        (ClassItemRoot autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   156
        (ClassItemRootForRevision autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   157
        (ClassNameItem autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   158
        (ClassRevisionTree autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   159
        (ClassVariablesInspectorView autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   160
        CodeGenerator
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   161
        (CodeGeneratorTests autoload)
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   162
        CodeGeneratorTool
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   163
        (ColorInspectorView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   164
        DebugView
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   165
        Diff
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   166
        (Diff3TextView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   167
        DiffListUtility
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   168
        DiffTextView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   169
        (EWorldIconLibrary autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   170
        EditFieldWithCompletion
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   171
        EditFieldWithCompletionSpec
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   172
        (EventMonitor autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   173
        (ExpandableRevisionItem autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   174
        FileBrowser
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   175
        FileBrowserV2PanelView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   176
        (FileBrowserV2SettingsDialog autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   177
        (FileBrowserV2Tests autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   178
        FileBrowserV2UISpecifications
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   179
        FileDialog
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   180
        (FileDialogV2 autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   181
        FileOperation
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   182
        FilenameEditFieldV2
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   183
        (HierarchicalClassRevisionList autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   184
        (HierarchicalVersionDiffBrowser autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   185
        InspectorView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   186
        (Launcher autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   187
        (LibraryBuilder autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   188
        MemoryMonitor
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   189
        MemoryMonitorView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   190
        (MemoryUsageView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   191
        MultiViewToolApplication
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   192
        (NewChangesBrowser autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   193
        (OldLauncher autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   194
        (ProcessMonitor autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   195
        ProcessMonitorV2
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   196
        (ProjectView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   197
        (RCSConflictEditTextView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   198
        (SemaphoreMonitor autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   199
        SettingsDialog
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   200
        (SmalltalkInspectorView autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   201
        (SourceRevisionItem autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   202
        SyntaxElement
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   203
        SyntaxHighlighter2
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   204
        SystemBrowser
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   205
        (SystemStatusMonitor autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   206
        (TerminalApplication autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   207
        (TextDiffTests autoload)
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   208
        #'Tools::AbstractTestRunner'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   209
        #'Tools::BackgroundJob'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   210
        #'Tools::BreakpointBrowser'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   211
        #'Tools::Browslet'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   212
        #'Tools::BrowsletCanvas'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   213
        #'Tools::CachedTags'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   214
        #'Tools::CheckinInfoDialog'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   215
        #'Tools::ClassChecker'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   216
        #'Tools::ClassSorter'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   217
        #'Tools::CodeCompletionMenu'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   218
        #'Tools::CodeCritics'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   219
        #'Tools::CodeView2'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   220
        (#'Tools::CodeView2DemoApp' autoload)
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   221
        #'Tools::CodeViewService'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   222
        (#'Tools::CompilerWarningToDoListEntry' autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   223
        #'Tools::DiffCodeView2'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   224
        (#'Tools::DiffCodeView2DemoApp' autoload)
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   225
        #'Tools::HierarchicalChangesetDialog'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   226
        #'Tools::InlineMessageDialog'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   227
        #'Tools::Inspector2'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   228
        #'Tools::Inspector2Tab'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   229
        #'Tools::LintRuleDetail'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   230
        #'Tools::LintRuleSelectionDialog'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   231
        #'Tools::MethodCategoryCache'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   232
        #'Tools::MethodRewriter'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   233
        #'Tools::NavigationHistory'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   234
        (#'Tools::NavigationHistoryTests' autoload)
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   235
        #'Tools::NavigationState'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   236
        #'Tools::NavigatorModel'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   237
        #'Tools::NewClassWizardDialog'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   238
        #'Tools::NewSystemBrowserCodeView'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   239
        #'Tools::Profiler'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   240
        #'Tools::ProfilerInfoBuilder'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   241
        #'Tools::ProfilerInfoItem'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   242
        #'Tools::ProjectLoader'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   243
        #'Tools::SearchDialog'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   244
        #'Tools::SmalltalkDiffTool'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   245
        (#'Tools::SmalltalkMergeTool' autoload)
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   246
        #'Tools::SpecialCodeView'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   247
        #'Tools::StringSearchTool'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   248
        #'Tools::Tag'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   249
        #'Tools::TagList'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   250
        #'Tools::TagsBrowser'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   251
        (#'Tools::ToDoList' autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   252
        (#'Tools::ToDoListBrowser' autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   253
        (#'Tools::ToDoListEntry' autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   254
        (#'Tools::ToDoNotification' autoload)
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   255
        #'Tools::WebBrowserPage'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   256
        VersionDiffBrowser
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   257
        (VersionRevisionItem autoload)
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   258
        ViewWithAcceptAndCancelBar
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   259
        Win32FileDialog
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   260
        #'stx_libtool'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   261
        AbstractDirectoryBrowser
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   262
        AbstractSourceCodeManagementSettingsAppl
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   263
        BookmarkMenuBuilder
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   264
        ContextInspectorView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   265
        DictionaryInspectorView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   266
        DiffCodeView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   267
        FileApplicationNoteBook
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   268
        FileBrowserV2
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   269
        FileBrowserV2SettingsAppl
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   270
        FileDialogWithPreview
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   271
        FindFileApplication
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   272
        ImageInspectorView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   273
        NewLauncher
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   274
        OrderedCollectionInspectorView
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   275
        SetInspectorView
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   276
        SmalltalkCodeGeneratorTool
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   277
        #'Tools::BackgroundQueueProcessingJob'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   278
        #'Tools::BreakpointService'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   279
        #'Tools::BrowserList'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   280
        #'Tools::CodeCompletionService'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   281
        #'Tools::CodeHighlightingService'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   282
        #'Tools::CodeNavigationService'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   283
        #'Tools::NavigatorCanvas'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   284
        #'Tools::NewSystemBrowser'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   285
        #'Tools::OrganizerCanvas'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   286
        #'Tools::SendersBrowslet'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   287
        #'Tools::StringSearchToolForTextView'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   288
        #'Tools::TestRunnerEmbedded'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   289
        #'Tools::VisualProfilerCanvas'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   290
        WorkspaceApplication
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   291
        BookmarkAddMenuBuilder
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   292
        BookmarkToolbarMenuBuilder
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   293
        CVSSourceCodeManagementSettingsAppl
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   294
        DirectoryContentsBrowser
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   295
        DirectoryTreeBrowser
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   296
        PerforceSourceCodeManagementSettingsAppl
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   297
        StoreSourceCodeManagementSettingsAppl
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   298
        #'Tools::ChangeList'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   299
        #'Tools::ClassCategoryList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   300
        #'Tools::ClassGeneratorList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   301
        #'Tools::ClassList'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   302
        #'Tools::LintRuleList'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   303
        #'Tools::MethodCategoryList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   304
        #'Tools::MethodList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   305
        #'Tools::NamespaceList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   306
        #'Tools::ProjectList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   307
        #'Tools::VariableList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   308
        #'Tools::FullMethodCategoryList'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   309
        #'Tools::HierarchicalChangeList'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   310
        #'Tools::HierarchicalClassCategoryList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   311
        #'Tools::HierarchicalClassList'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   312
        #'Tools::HierarchicalLintRuleList'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   313
        #'Tools::HierarchicalProjectList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   314
        #'Tools::ImplementingClassList'
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   315
        #'Tools::ImplementingMethodList'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   316
        #'Tools::NamespaceFilter'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   317
        #'Tools::TestRunner2'
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   318
        #'Tools::HierarchicalPackageFilterList'
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   319
        #'Tools::InheritanceClassList'
10108
cba40374180c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 9914
diff changeset
   320
        #'Tools::ChangeSetBrowser2'
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
    )
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   323
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   324
extensionMethodNames
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   325
    "lists the extension methods which are to be included in the project.
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   326
     Entries are 2-element array literals, consisting of class-name and selector."
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   327
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
    ^ #(
9419
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   329
        ByteArray inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   330
        Character inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   331
        CharacterArray inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   332
        Collection inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   333
        Color inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   334
        Color inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   335
        Dictionary inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   336
        ExecutableFunction printStringForBrowserWithSelector:
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   337
        Form inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   338
        Image inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   339
        Integer inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   340
        Method inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   341
        Method printStringForBrowserWithSelector:inClass:
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   342
        Method selectorPrintStringInBrowserFor:
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   343
        Method selectorPrintStringInBrowserFor:class:
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   344
        MethodDictionary inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   345
        Object inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   346
        OrderedCollection inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   347
        RunArray inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   348
        Set inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   349
        Text inspectorExtraAttributes
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   350
        'NameSpace class' inspectorClass
421ce5a0e0b1 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 9263
diff changeset
   351
        'Smalltalk class' inspectorClass
10162
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   352
        Breakpoint icon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   353
        Change flattenOnto:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   354
        Change flattenedChanges
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   355
        Change removed
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   356
        Change removed:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   357
        ChangeSet condenseChangesForRemoved
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   358
        ChangeSet flattenOnto:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   359
        ChangeSet flattenedChanges
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   360
        ChangeSet inspector2TabBrowser
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   361
        CharacterArray inspector2TabText
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   362
        ClassDescription iconInBrowserForVariableNamed:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   363
        CompositeChange condenseChangesForRemoved
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   364
        CompositeChange flattenOnto:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   365
        CompositeChange removed
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   366
        CompositeChange removed:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   367
        Date inspectorExtraAttributes
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   368
        EditTextView absoluteXOfPosition:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   369
        EditTextView absoluteYOfCursor
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   370
        EditTextView xOfPosition:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   371
        EditTextView yOfCursor
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   372
        EditTextView yOfPosition:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   373
        MenuView shortKeys
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   374
        Object asTestCase
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   375
        Object inspect
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   376
        Object inspector2TabCommon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   377
        Object isTestCaseLike
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   378
        Object newInspector2Tab
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   379
        PopUpMenu asMenu
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   380
        ProfileTree method
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   381
        ProfileTree package
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   382
        SelectionInListModelView textStartLeft
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   383
        SelectionInListModelView textStartLeft:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   384
        SimpleView isCodeView2
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   385
        StringCollection inspector2TabText
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   386
        Symbol formattedCode
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   387
        Text inspector2TabText
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   388
        Timestamp inspectorExtraAttributes
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   389
        UserPreferences alwaysOpenNewTabWhenCtrlClick
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   390
        UserPreferences alwaysOpenNewTabWhenCtrlClick:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   391
        UserPreferences showBookmarkBar
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   392
        UserPreferences showBookmarkBar:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   393
        UserPreferences showEmbeddedTestRunnerInBrowser
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   394
        UserPreferences showEmbeddedTestRunnerInBrowser:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   395
        UserPreferences showMethodTemplate
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   396
        UserPreferences showMethodTemplate:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   397
        UserPreferences useCodeView2InTools
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   398
        UserPreferences useCodeView2InTools:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   399
        UserPreferences webBrowserLikeLayout
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   400
        UserPreferences webBrowserLikeLayout:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   401
        'AbstractSyntaxHighlighter class' formatExpression:in:elementsInto:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   402
        'AbstractSyntaxHighlighter class' formatMethod:in:using:elementsInto:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   403
        'DoWhatIMeanSupport class' askUserForCompletion:for:at:from:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   404
        'DoWhatIMeanSupport class' codeCompletionForLiteralSymbol:inClass:codeView:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   405
        'DoWhatIMeanSupport class' codeCompletionForMessage:inClass:codeView:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   406
        'DoWhatIMeanSupport class' codeCompletionForMethod:inClass:codeView:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   407
        'DoWhatIMeanSupport class' methodProtocolCompletion:inEnvironment:
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   408
        'DoWhatIMeanSupport class' #'old_askUserForCompletion:for:from:'
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   409
        'GenericToolbarIconLibrary class' bookmarks22x22
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   410
        'GenericToolbarIconLibrary class' #'brkp_obj'
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   411
        'GenericToolbarIconLibrary class' #'brkpd_obj'
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   412
        'GenericToolbarIconLibrary class' bug16x16Icon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   413
        'GenericToolbarIconLibrary class' bug24x24Icon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   414
        'GenericToolbarIconLibrary class' bug32x32Icon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   415
        'GenericToolbarIconLibrary class' lint16x16Icon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   416
        'GenericToolbarIconLibrary class' lint24x24Icon
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   417
        'GenericToolbarIconLibrary class' lint32x32Icon
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   418
    )
7027
c7548c53b5be automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
   419
! !
c7548c53b5be automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
   420
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   421
!stx_libtool class methodsFor:'description - project information'!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   422
10162
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   423
applicationIconFileName
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   424
    "Return the name (without suffix) of an icon-file (the app's icon); will be included in the rc-resource file"
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   425
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   426
    ^ nil
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   427
    "/ ^ self applicationName
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   428
!
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   429
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   430
companyName
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   431
    "Return a companyname which will appear in <lib>.rc"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   432
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   433
    ^ 'eXept Software AG'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   434
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   435
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   436
description
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   437
    "Return a description string which will appear in nt.def / bc.def"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   438
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   439
    ^ 'Smalltalk/X Tools'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   440
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   441
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   442
legalCopyright
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   443
    "Return a copyright string which will appear in <lib>.rc"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   444
9731
5141590e17f6 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 9713
diff changeset
   445
    ^ 'Copyright Claus Gittinger 1988-2011\nCopyright eXept Software AG 1998-2011'
7893
24e5de817a76 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7892
diff changeset
   446
9731
5141590e17f6 changed: #legalCopyright
Claus Gittinger <cg@exept.de>
parents: 9713
diff changeset
   447
    "Modified: / 01-02-2011 / 11:56:18 / cg"
10162
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   448
!
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   449
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   450
productName
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   451
    "Return a product name which will appear in <lib>.rc"
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   452
df7205fc31da automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 10108
diff changeset
   453
    ^ 'Smalltalk/X'
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   454
! !
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   455
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   456
!stx_libtool class methodsFor:'documentation'!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   457
8830
7dd28b7d56d2 automatic checkIn
Michael Beyl <mb@exept.de>
parents: 8712
diff changeset
   458
version_CVS
10168
1c19c9d0cf85 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 10162
diff changeset
   459
    ^ '$Header: /cvs/stx/stx/libtool/stx_libtool.st,v 1.55 2011-07-05 12:59:30 stefan Exp $'
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   460
! !