Tools__CachedTags.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 19 Jul 2017 09:42:32 +0200
branchjv
changeset 17619 edb119820fcb
parent 12431 9f0c59c742d5
child 18532 cccb41254edf
permissions -rw-r--r--
Issue #154: Set window style using `#beToolWindow` to indicate that the minirunner window is kind of support tool rather than some X11 specific code (which does not work on Windows of course) See https://swing.fit.cvut.cz/projects/stx-jv/ticket/154
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9889
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2002 by eXept Software AG 
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Object subclass:#CachedTags
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:'tagTimestamp tagList'
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Tools-File-Tags'
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!CachedTags class methodsFor:'documentation'!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
copyright
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 (c) 2002 by eXept Software AG 
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
	      All Rights Reserved
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
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
!CachedTags methodsFor:'accessing'!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
tagList
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    "return the value of the instance variable 'tagList' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    ^ tagList
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
tagList:something
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
    "set the value of the instance variable 'tagList' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    tagList := something.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
tagTimestamp
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    "return the value of the instance variable 'tagTimestamp' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    ^ tagTimestamp
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
tagTimestamp:something
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    "set the value of the instance variable 'tagTimestamp' (automatically generated)"
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    tagTimestamp := something.
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
! !
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
!CachedTags class methodsFor:'documentation'!
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
version_CVS
12123
4bde08cebd48 trunk branched into /branches/jv
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 9889
diff changeset
    70
    ^ '§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
    71
!
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    72
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    73
version_HG
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    74
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    75
    ^ '$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
    76
!
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    77
12128
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    78
version_SVN
a7ff7d66ee85 Improvements in LintHighlighter, few fixes
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    79
    ^ '$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
    80
! !
12431
9f0c59c742d5 Added LintRuleSettingsApplication and LintRuleEditDialog to define user-defined rule sets.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12128
diff changeset
    81