stx_libbasic3.st
author Claus Gittinger <cg@exept.de>
Mon, 21 Aug 2006 14:02:41 +0200
changeset 1596 9927fe121382
parent 1593 b7274f985d84
child 1620 720c16da5d21
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
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    12
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic3' }"
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
LibraryDefinition subclass:#stx_libbasic3
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'* Projects *'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
1551
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    22
!stx_libbasic3 class methodsFor:'documentation'!
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    23
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    24
copyright
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    25
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    26
 COPYRIGHT (c) 2006 by eXept Software AG
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    27
              All Rights Reserved
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    28
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    29
 This software is furnished under a license and may be used
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    30
 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
    31
 inclusion of the above copyright notice.   This software may not
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    32
 be provided or otherwise made available to, or used by, any
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    33
 other person.  No title to or ownership of the software is
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    34
 hereby transferred.
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
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    38
documentation
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    39
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    40
    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
    41
    This library contains source-code-management, packaging and history related stuff.
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    42
"
c451782a4a9d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
    43
! !
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!stx_libbasic3 class methodsFor:'description'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
    47
classNamesAndAttributes
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    ^ #(
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
    49
        "/ <className> or (<className> attributes...)
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    50
        'AbstractSourceCodeManager'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
        'ApplicationDefinition'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
        'CVSSourceCodeManager'
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
    53
        ('CallChain' #win32)
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    54
        'Change'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    55
        'ChangeSet'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    56
        'ClassCategoryChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    57
        'ClassChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    58
        'ClassClassVariableChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    59
        'ClassCommentChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    60
        'ClassDefinitionChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    61
        'ClassInstVarDefinitionChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    62
        'ClassOrganizer'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
        'ClassOtherChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    64
        'ClassPrimitiveChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
        'ClassPrimitiveDefinitionsChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    66
        'ClassPrimitiveFunctionsChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
        'ClassPrimitiveVariablesChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    68
        'ClassRemoveChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    69
        'ClassRenameChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    70
        'DoItChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
        'FlatDirectorySourceCodeManager'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
        'HTMLDocGenerator'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    73
        'HierarchicalDirectorySourceCodeManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    74
        'HistoryManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    75
        'LibraryDefinition'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    76
        'MessageTally'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    77
        'MessageTracer'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    78
        'MethodCategoryChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
        'MethodCategoryRenameChange'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
        'MethodChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    81
        'MethodDefinitionChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    82
        'MethodFinder'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    83
        'MethodPrivacyChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    84
        'MethodRemoveChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    85
        'NameSpaceCreationChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    86
        'NonVersioningSourceCodeManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    87
        'OtherChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    88
        'PackageId'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    89
        'ProfileTree'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    90
        'ProjectDefinition'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    91
        'RCSSourceCodeManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    92
        'SourceCodeManagerError'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    93
        'SourceCodeManagerUtilities'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    94
        'StoreSourceCodeManager'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
        'SystemOrganizer'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    96
        'TimestampChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    97
        'WrappedMethod'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    98
        'stx_libbasic3'
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
    99
    )
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
extensionMethodNames
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    ^ #(
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   104
    )
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
!stx_libbasic3 class methodsFor:'description - project information'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
description
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
    "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
   111
1552
b5da2bd4e11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
   112
    ^ 'Smalltalk/X Basic classes 3'
b5da2bd4e11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
   113
b5da2bd4e11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
   114
    "Modified: / 18-08-2006 / 13:18:10 / cg"
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   115
!
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   116
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   117
fileDescription
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   118
    "Return a description string which will appear in <lib>.rc"
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   119
1593
b7274f985d84 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1586
diff changeset
   120
    ^ 'Smalltalk/X Additional Developer Basic Class Library'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   121
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   122
    "Modified: / 18-08-2006 / 13:18:10 / cg"
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
!stx_libbasic3 class methodsFor:'documentation'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
version
1596
9927fe121382 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1593
diff changeset
   128
    ^ '$Header: /cvs/stx/stx/libbasic3/stx_libbasic3.st,v 1.7 2006-08-21 12:02:41 cg Exp $'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
! !