Tools__CachedTags.st
author Claus Gittinger <cg@exept.de>
Wed, 05 Jun 2019 14:16:59 +0200
changeset 18805 f6df57c6dbfb
parent 9889 b5d74ca512d9
child 12123 4bde08cebd48
permissions -rw-r--r--
#BUGFIX by cg class: AbstractFileBrowser changed: #currentFileNameHolder endless loop if file not present.
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
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
    ^ '$Header: /cvs/stx/stx/libtool/Tools__CachedTags.st,v 1.1 2011-05-06 08:34:57 cg Exp $'
b5d74ca512d9 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
! !