stx_libbasic3.st
author Claus Gittinger <cg@exept.de>
Fri, 18 Aug 2006 18:57:46 +0200
changeset 1573 62046bbd8258
parent 1552 b5da2bd4e11f
child 1586 376310929cde
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
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
autoloaded_classNames
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    ^ #(
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
)
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
compiled_classNames
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    ^ #(
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    54
        'AbstractSourceCodeManager'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
        'ApplicationDefinition'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
        'CVSSourceCodeManager'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    57
        'CallChain'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    58
        'Change'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    59
        'ChangeSet'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    60
        'ClassCategoryChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    61
        'ClassChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    62
        'ClassClassVariableChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    63
        'ClassCommentChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    64
        'ClassDefinitionChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    65
        'ClassInstVarDefinitionChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    66
        'ClassOrganizer'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
        'ClassOtherChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    68
        'ClassPrimitiveChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
        'ClassPrimitiveDefinitionsChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    70
        'ClassPrimitiveFunctionsChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
        'ClassPrimitiveVariablesChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    72
        'ClassRemoveChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    73
        'ClassRenameChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    74
        'DoItChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
        'FlatDirectorySourceCodeManager'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
        'HTMLDocGenerator'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    77
        'HierarchicalDirectorySourceCodeManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    78
        'HistoryManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    79
        'LibraryDefinition'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    80
        'MessageTally'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    81
        'MessageTracer'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    82
        'MethodCategoryChange'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
        'MethodCategoryRenameChange'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
        'MethodChange'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    85
        'MethodDefinitionChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    86
        'MethodFinder'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    87
        'MethodPrivacyChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    88
        'MethodRemoveChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    89
        'NameSpaceCreationChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    90
        'NonVersioningSourceCodeManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    91
        'OtherChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    92
        'PackageId'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    93
        'ProfileTree'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    94
        'ProjectDefinition'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    95
        'RCSSourceCodeManager'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    96
        'SourceCodeManagerError'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    97
        'SourceCodeManagerUtilities'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
    98
        'StoreSourceCodeManager'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
        'SystemOrganizer'
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   100
        'TimestampChange'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   101
        'WrappedMethod'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   102
        'stx_libbasic3'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
)
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
excluded_classNames
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
^ #(
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
#'Packages::AbstractPackage'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
#'Packages::AbstractPackageBrowser'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
#'Packages::AbstractPackageDetails'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
#'Packages::AbstractPackageManager'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
#'Packages::AbstractPackageNotebookApplication'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
#'Packages::AbstractTestCases'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
#'Packages::ChangeFaker'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
#'Packages::ChangesHelper'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
#'Packages::ClassPrerequisite'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
#'Packages::DefaultPackage'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
#'Packages::DictionaryStack'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
#'Packages::Package'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
#'Packages::PackageBrowser'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
#'Packages::PackageDetails'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
#'Packages::PackageError'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
#'Packages::PackageHandler'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
#'Packages::PackageManager'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
#'Packages::PackageManagerTests'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
#'Packages::PackageNotification'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
#'Packages::PackageOpener'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
#'Packages::PackagePrerequisite'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
#'Packages::PackageProperties'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
#'Packages::PackageSaver'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
#'Packages::PackageSelector'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
#'Packages::PackagesInstalled'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
#'Packages::PackageSmalltalkManipulationTestCases'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
#'Packages::PackageTestCases'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
#'Packages::Prerequisite'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
#'Packages::PrerequisiteCollection'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
#'Packages::StxPackageFileHandler'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
#'Packages::StxPackageFileReader'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
#'Packages::StxPackageFileWriter'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
#'Packages::VersionHistory'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
#'Packages::VersionNumber'
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
)
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
    "Modified: / 17-08-2006 / 21:52:44 / cg"
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
extensionMethodNames
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
    ^ #(
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
)
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
!stx_libbasic3 class methodsFor:'description - project information'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
description
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
    "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
   156
1552
b5da2bd4e11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
   157
    ^ 'Smalltalk/X Basic classes 3'
b5da2bd4e11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
   158
b5da2bd4e11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
   159
    "Modified: / 18-08-2006 / 13:18:10 / cg"
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   160
!
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   161
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   162
fileDescription
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   163
    "Return a description string which will appear in <lib>.rc"
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   164
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   165
    ^ 'Smalltalk/X Additional Developer Basic Classes Library'
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   166
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   167
    "Modified: / 18-08-2006 / 13:18:10 / cg"
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
! !
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
!stx_libbasic3 class methodsFor:'documentation'!
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
version
1573
62046bbd8258 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
   173
    ^ '$Header: /cvs/stx/stx/libbasic3/stx_libbasic3.st,v 1.4 2006-08-18 16:57:46 cg Exp $'
1548
87c602951a30 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
! !