Tools__CachedTags.st
author Patrik Svestka <patrik.svestka@gmail.com>
Tue, 09 Nov 2021 13:59:48 +0100
branchjv
changeset 19618 76c562829409
parent 18532 cccb41254edf
permissions -rw-r--r--
Monokai Theme (CodeViewTheme)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18532
cccb41254edf Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 12431
diff changeset
     1
"{ Encoding: utf8 }"
cccb41254edf Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 12431
diff changeset
     2
9889
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
 COPYRIGHT (c) 2002 by eXept Software AG 
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	      All Rights Reserved
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 This software is furnished under a license and may be used
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
 hereby transferred.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ Package: 'stx:libtool' }"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
"{ NameSpace: Tools }"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
Object subclass:#CachedTags
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	instanceVariableNames:'tagTimestamp tagList'
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	classVariableNames:''
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	poolDictionaries:''
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
	category:'Interface-Tools-File-Tags'
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
!CachedTags class methodsFor:'documentation'!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
copyright
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 COPYRIGHT (c) 2002 by eXept Software AG 
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
	      All Rights Reserved
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 This software is furnished under a license and may be used
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 only in accordance with the terms of that license and with the
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 be provided or otherwise made available to, or used by, any
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 other person.  No title to or ownership of the software is
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 hereby transferred.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
! !
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!CachedTags methodsFor:'accessing'!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
tagList
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    "return the value of the instance variable 'tagList' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    ^ tagList
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
tagList:something
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    "set the value of the instance variable 'tagList' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    tagList := something.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
tagTimestamp
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    "return the value of the instance variable 'tagTimestamp' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    ^ tagTimestamp
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
tagTimestamp:something
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    "set the value of the instance variable 'tagTimestamp' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    tagTimestamp := something.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
! !
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!CachedTags class methodsFor:'documentation'!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
version_CVS
18532
cccb41254edf Issue #239: Fix all Smalltak/X source files to be in unicode (UTF8 without BOM) and prefixed by "{ Encoding: utf8 }" when any unicode character is present
Patrik Svestka <patrik.svestka@gmail.com>
parents: 12431
diff changeset
    72
    ^ '§Header: /cvs/stx/stx/libtool/Tools__CachedTags.st,v 1.1 2011/05/06 08:34:57 cg Exp §'
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    73
!
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    74
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    75
version_HG
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    76
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    77
    ^ '$Changeset: <not expanded> $'
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    78
!
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    79
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    80
version_SVN
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    81
    ^ '$Id: Tools__CachedTags.st 7854 2012-01-30 17:49:41Z vranyj1 $'
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    82
! !
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    83