stx_libbasic3.st
author Claus Gittinger <cg@exept.de>
Sat, 17 Mar 2007 12:38:43 +0100
changeset 1959 fe2aeef0555b
parent 1949 c6da8f59f7d6
child 1968 6820b9e820e2
permissions -rw-r--r--
*** empty log message ***
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
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libbasic3
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
1959
fe2aeef0555b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
    18
	category:'* Projects & Packages *'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    21
!stx_libbasic3 class methodsFor:'documentation'!
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    22
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    23
copyright
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 (c) 2006 by eXept Software AG
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    26
              All Rights Reserved
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    27
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    28
 This software is furnished under a license and may be used
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    29
 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
    30
 inclusion of the above copyright notice.   This software may not
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    31
 be provided or otherwise made available to, or used by, any
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    32
 other person.  No title to or ownership of the software is
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    33
 hereby transferred.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    34
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    35
!
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
documentation
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
    Build-Information for creation of the st/x standard library: stx_libbasic3.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    40
    This library contains source-code-management, packaging and history related stuff.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    41
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    42
! !
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libbasic3 class methodsFor:'description'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    46
preRequisites
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    47
    ^ #(
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    48
        #'stx:libbasic'
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    49
        #'stx:libcomp'
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    50
    )
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    51
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    52
    "Modified: / 09-10-2006 / 14:10:03 / cg"
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    53
! !
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    54
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    55
!stx_libbasic3 class methodsFor:'description - compilation'!
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    56
1926
7ebda08994ea Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1853
diff changeset
    57
additionalDefinitions_bc_dot_mak
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    58
    ^ '
1926
7ebda08994ea Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 1853
diff changeset
    59
# see stdHeader_bc for LIBBASIC3_BASE
1776
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    60
# LIBBASIC3_BASE   =0x60e80000
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    61
LIB_BASE_LD_ARG=-b:$(LIBBASIC3_BASE)
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    62
'
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    63
! !
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    64
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    65
!stx_libbasic3 class methodsFor:'description - contents'!
ab8aec65120c automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
    66
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
    67
classNamesAndAttributes
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    ^ #(
1943
0f843e4c315c automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 1926
diff changeset
    69
        "<className> or (<className> attributes...) in load order"
1853
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    70
        AbstractSourceCodeManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    71
        CallChain
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    72
        Change
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    73
        ChangeSet
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    74
        ClassOrganizer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    75
        HTMLDocGenerator
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    76
        HistoryManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    77
        MessageTally
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    78
        MessageTracer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    79
        MethodFinder
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    80
        ProfileTree
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    81
        SourceCodeManagerError
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    82
        SourceCodeManagerUtilities
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    83
        SystemOrganizer
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    84
        WrappedMethod
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    85
        #'stx_libbasic3'
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    86
        CVSSourceCodeManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    87
        ClassChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    88
        DoItChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    89
        NameSpaceCreationChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    90
        OtherChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    91
        StoreSourceCodeManager
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    92
        ClassCategoryChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    93
        ClassClassVariableChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    94
        ClassCommentChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    95
        ClassDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    96
        ClassInstVarDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    97
        ClassOtherChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    98
        ClassPrimitiveChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
    99
        ClassRemoveChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   100
        ClassRenameChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   101
        MethodCategoryRenameChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   102
        MethodChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   103
        TimestampChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   104
        ClassPrimitiveDefinitionsChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   105
        ClassPrimitiveFunctionsChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   106
        ClassPrimitiveVariablesChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   107
        MethodCategoryChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   108
        MethodDefinitionChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   109
        MethodPackageChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   110
        MethodPrivacyChange
3e363f7b4656 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1798
diff changeset
   111
        MethodRemoveChange
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   112
    )
1738
e63af0d84b52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
   113
! !
e63af0d84b52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1724
diff changeset
   114
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
!stx_libbasic3 class methodsFor:'description - project information'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   117
companyName
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   118
    "Return a companyname which will appear in <lib>.rc"
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   119
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   120
    ^ 'eXept Software AG'
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   121
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   122
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
description
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
    "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
   125
1789
cd1e0942f4c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   126
    ^ 'Smalltalk/X Additional Developer Basic Classes'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   127
1789
cd1e0942f4c0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
   128
    "Modified: / 14-09-2006 / 10:57:32 / cg"
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   129
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   130
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   131
legalCopyright
1682
f7b542414914 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 1662
diff changeset
   132
    "Return a copyright string which will appear in <lib>.rc"
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   133
1627
7b201e999e7d comments
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
   134
    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
1620
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   135
!
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   136
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   137
productName
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   138
    "Return a product name which will appear in <lib>.rc"
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   139
720c16da5d21 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1596
diff changeset
   140
    ^ 'Smalltalk/X'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
!stx_libbasic3 class methodsFor:'documentation'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
version
1959
fe2aeef0555b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   146
    ^ '$Header: /cvs/stx/stx/libbasic3/stx_libbasic3.st,v 1.33 2007-03-17 11:38:43 cg Exp $'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
! !