Tools_NavigatorModel.st
author Claus Gittinger <cg@exept.de>
Sun, 01 Sep 2013 14:02:40 +0200
changeset 13455 510fbf53592c
parent 12042 e6d76cfa0b1b
child 13473 d8e9ed472e9f
child 13498 b8d845e42988
permissions -rw-r--r--
class: DebugView comment/format in: #setContext:releaseInspectors: #showingContext3:nesting: changed: #codeAccept:inClass:unwind:category:onCancel: #showingContext2:nesting:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2000 by eXept Software AG
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
5592
d9730a8d7c52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5591
diff changeset
    12
"{ Package: 'stx:libtool' }"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
ApplicationModel subclass:#NavigatorModel
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
8695
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
    18
	classVariableNames:'AllEntry SuperSendEntry UncommentedEntry'
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Browsers-New'
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!NavigatorModel class methodsFor:'documentation'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
copyright
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
 COPYRIGHT (c) 2000 by eXept Software AG
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
	      All Rights Reserved
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 This software is furnished under a license and may be used
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 hereby transferred.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!NavigatorModel class methodsFor:'initialization'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
initialize
8695
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
    42
    AllEntry := '* all *'.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    "Created: / 24.2.2000 / 13:41:29 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
!NavigatorModel class methodsFor:'defaults'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
8754
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    49
isPseudoCategory:cat
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    50
    ^ cat = self nameListEntryForChanged
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    51
    or:[ cat = self nameListEntryForUndocumented
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    52
    or:[ cat = self nameListEntryForUnloaded
12042
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
    53
    or:[ cat = self nameListEntryForExtendedClasses
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
    54
    or:[ cat = self nameListEntryForALL ]]]]
8754
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    55
!
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    56
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    57
isPseudoProtocol:protocol
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    58
    ^ protocol = self nameListEntryForObsolete
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    59
    or:[ protocol = self nameListEntryForSuperSend
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    60
    or:[ protocol = self nameListEntryForUncommented ]]
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    61
!
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
    62
7058
77a6998a37a6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5592
diff changeset
    63
markForBeingInChangeList
77a6998a37a6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5592
diff changeset
    64
    ^ ' *'
77a6998a37a6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5592
diff changeset
    65
77a6998a37a6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5592
diff changeset
    66
    "Created: / 29-08-2006 / 10:26:05 / cg"
77a6998a37a6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5592
diff changeset
    67
!
77a6998a37a6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5592
diff changeset
    68
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    69
markForBeingManagedBySVN: package
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    70
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    71
    | repo branch mark |    
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
    72
11159
1815b3c8add1 Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
vrany
parents: 10676
diff changeset
    73
    (ConfigurableFeatures includesFeature: #SubversionSupportEnabled) ifFalse:[^''].
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    74
    package = PackageId noProjectID ifTrue:[^''].
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    75
    
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
    76
    "/ use Smalltalk-at to trick the dependency/prerequisite generator
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    77
    repo := (Smalltalk at:#SVN::RepositoryManager) current 
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    78
                repositoryForPackage: package onlyFromCache: true.
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    79
    repo ifNil:[^''].
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    80
    mark := ' [SVN]'.
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    81
    branch := repo workingCopy branchOrNil.
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    82
    branch ifNotNil:[mark := ' [SVN: ', branch path,']'].
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    83
    ^mark asText colorizeAllWith: Color gray
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    84
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    85
    "Created: / 06-04-2010 / 11:23:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
    86
    "Modified (comment): / 07-09-2011 / 10:43:00 / cg"
11159
1815b3c8add1 Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
vrany
parents: 10676
diff changeset
    87
    "Modified: / 19-01-2012 / 10:44:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    88
!
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    89
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    90
markForBeingManagedBySVN: package branch: branch
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    91
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    92
    | mark |
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    93
    mark := branch 
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    94
                ifNil:
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    95
                    [' [SVN]']
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    96
                ifNotNil:
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    97
                    [' [SVN: ',branch,']'].
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    98
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
    99
    ^mark asText colorizeAllWith: Color gray.
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   100
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   101
    "Created: / 14-12-2010 / 15:56:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   102
!
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   103
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
nameListEntryForALL
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
    ^ AllEntry ? '* all *'
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    "Created: / 24.2.2000 / 13:39:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
    "Modified: / 25.2.2000 / 21:18:30 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
8737
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   111
nameListEntryForALLWithCount
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   112
    ^ '* all (%1) *'
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   113
!
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   114
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   115
nameListEntryForAnnotated
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   116
    ^ '* annotated (%1) *'
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   117
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   118
    "Created: / 07-09-2011 / 10:11:40 / cg"
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   119
!
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   120
8737
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   121
nameListEntryForBookmarked
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   122
    ^ '* bookmarked (%1) *'
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   123
!
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   124
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   125
nameListEntryForChanged
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   126
    ^ '* changed *'
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   127
!
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   128
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   129
nameListEntryForChangedWithCount
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   130
    ^ '* changed (%1) *'
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   131
!
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   132
8732
d89357e795a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8722
diff changeset
   133
nameListEntryForDocumentation
d89357e795a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8722
diff changeset
   134
    ^ '* documentation (%1) *'
d89357e795a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8722
diff changeset
   135
!
d89357e795a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8722
diff changeset
   136
12042
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   137
nameListEntryForExtendedClasses
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   138
    ^ '* extended *'
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   139
!
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   140
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   141
nameListEntryForExtendedClassesWithCount
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   142
    ^ '* extended (%1) *'
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   143
!
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   144
8929
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   145
nameListEntryForExtensions
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   146
    ^ '* extensions (%1) *'
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   147
!
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   148
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   149
nameListEntryForFailedTests
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   150
    ^ '* failed tests (%1) *'
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   151
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   152
    "Created: / 08-03-2010 / 18:26:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   153
!
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   154
10358
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   155
nameListEntryForFullyCovered
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   156
    ^ '* covered (%1) *'
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   157
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   158
    "Created: / 20-07-2011 / 18:20:53 / cg"
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   159
!
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   160
8866
c4678ec9944b added: #nameListEntryForLong
Claus Gittinger <cg@exept.de>
parents: 8754
diff changeset
   161
nameListEntryForLong
c4678ec9944b added: #nameListEntryForLong
Claus Gittinger <cg@exept.de>
parents: 8754
diff changeset
   162
    ^ '* long (%1) *'
c4678ec9944b added: #nameListEntryForLong
Claus Gittinger <cg@exept.de>
parents: 8754
diff changeset
   163
!
c4678ec9944b added: #nameListEntryForLong
Claus Gittinger <cg@exept.de>
parents: 8754
diff changeset
   164
9087
43da2b44e13b added: #nameListEntryForMustBeRedefinedInSubclass
Claus Gittinger <cg@exept.de>
parents: 9026
diff changeset
   165
nameListEntryForMustBeRedefinedInSubclass
43da2b44e13b added: #nameListEntryForMustBeRedefinedInSubclass
Claus Gittinger <cg@exept.de>
parents: 9026
diff changeset
   166
    ^ '* must be redefined (%1) *'
43da2b44e13b added: #nameListEntryForMustBeRedefinedInSubclass
Claus Gittinger <cg@exept.de>
parents: 9026
diff changeset
   167
!
43da2b44e13b added: #nameListEntryForMustBeRedefinedInSubclass
Claus Gittinger <cg@exept.de>
parents: 9026
diff changeset
   168
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
nameListEntryForNILCategory
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
    ^ '* no category *'
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
nameListEntryForNonStatic
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
    ^ '* instance *'
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   176
10359
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   177
nameListEntryForNotInstrumented
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   178
    ^ '* coverage unknown/not instrumented (%1) *'
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   179
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   180
    "Created: / 20-07-2011 / 18:41:53 / cg"
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   181
!
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   182
8719
02158918feb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8695
diff changeset
   183
nameListEntryForObsolete
8722
a1ce8e925f55 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8719
diff changeset
   184
    ^ '* obsolete (%1) *'
8719
02158918feb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8695
diff changeset
   185
!
02158918feb2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8695
diff changeset
   186
8929
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   187
nameListEntryForOverride
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   188
    ^ '* override (%1) *'
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   189
!
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   190
10358
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   191
nameListEntryForPartiallyCovered
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   192
    ^ '* partially covered (%1) *'
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   193
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   194
    "Created: / 20-07-2011 / 18:21:05 / cg"
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   195
!
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   196
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   197
nameListEntryForPassedTests
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   198
    ^ '* passed tests (%1) *'
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   199
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   200
    "Created: / 08-03-2010 / 18:26:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   201
!
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   202
11866
75bf5750bbae added: #nameListEntryForRedefine
Claus Gittinger <cg@exept.de>
parents: 11159
diff changeset
   203
nameListEntryForRedefine
75bf5750bbae added: #nameListEntryForRedefine
Claus Gittinger <cg@exept.de>
parents: 11159
diff changeset
   204
    ^ '* redefine (%1) *'
75bf5750bbae added: #nameListEntryForRedefine
Claus Gittinger <cg@exept.de>
parents: 11159
diff changeset
   205
!
75bf5750bbae added: #nameListEntryForRedefine
Claus Gittinger <cg@exept.de>
parents: 11159
diff changeset
   206
8929
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   207
nameListEntryForRedefined
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   208
    ^ '* redefined (%1) *'
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   209
!
Claus Gittinger <cg@exept.de>
parents: 8866
diff changeset
   210
9026
e32283a8ff69 added: #nameListEntryForRequired
Claus Gittinger <cg@exept.de>
parents: 8929
diff changeset
   211
nameListEntryForRequired
e32283a8ff69 added: #nameListEntryForRequired
Claus Gittinger <cg@exept.de>
parents: 8929
diff changeset
   212
    ^ '* required (%1) *'
e32283a8ff69 added: #nameListEntryForRequired
Claus Gittinger <cg@exept.de>
parents: 8929
diff changeset
   213
!
e32283a8ff69 added: #nameListEntryForRequired
Claus Gittinger <cg@exept.de>
parents: 8929
diff changeset
   214
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
nameListEntryForStatic
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   216
    ^ '* static *'
8695
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
   217
!
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
   218
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
   219
nameListEntryForSuperSend
8722
a1ce8e925f55 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8719
diff changeset
   220
    ^ '* super (%1) *'
8695
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
   221
!
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
   222
9c76f55700a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7488
diff changeset
   223
nameListEntryForUncommented
8722
a1ce8e925f55 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8719
diff changeset
   224
    ^ '* uncommented (%1) *'
8737
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   225
!
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   226
10358
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   227
nameListEntryForUncovered
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   228
    ^ '* not covered (%1) *'
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   229
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   230
    "Created: / 20-07-2011 / 18:20:44 / cg"
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   231
!
Claus Gittinger <cg@exept.de>
parents: 10248
diff changeset
   232
8754
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   233
nameListEntryForUndocumented
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   234
    ^ '* undocumented *'
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   235
!
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   236
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   237
nameListEntryForUndocumentedWithCount
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   238
    ^ '* undocumented (%1) *'
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   239
!
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   240
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   241
nameListEntryForUnloaded
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   242
    ^ '* unloaded *'
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   243
!
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   244
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   245
nameListEntryForUnloadedWithCount
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   246
    ^ '* unloaded (%1) *'
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   247
!
058f31ca6e6f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8737
diff changeset
   248
8737
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   249
nameListEntryForVisited
18451bc9f48b + pseudo entries
Claus Gittinger <cg@exept.de>
parents: 8732
diff changeset
   250
    ^ '* visited (%1) *'
9129
c4bd6c5e946f added: #pseudoEntryForegroundColor
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
   251
!
c4bd6c5e946f added: #pseudoEntryForegroundColor
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
   252
c4bd6c5e946f added: #pseudoEntryForegroundColor
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
   253
pseudoEntryForegroundColor
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   254
    ^ UserPreferences current colorForPseudoProtocolsInMethodListInBrowser.
9129
c4bd6c5e946f added: #pseudoEntryForegroundColor
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
   255
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   256
    "Modified: / 07-09-2011 / 09:59:55 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
!NavigatorModel class methodsFor:'interface specs'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
metaSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   264
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   268
    "
7488
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   269
     UIPainter new openOnClass:Tools::NavigatorModel andSelector:#metaSpec
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   270
     Tools::NavigatorModel new openInterface:#metaSpec
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
    ^ 
7488
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   276
     #(FullSpec
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   277
        name: metaSpec
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   278
        window: 
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   279
       (WindowSpec
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   280
          label: 'MetaToggles'
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   281
          name: 'MetaToggles'
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   282
          min: (Point 0 0)
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   283
          max: (Point 1024 721)
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   284
          bounds: (Rectangle 0 0 300 28)
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   285
        )
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   286
        component: 
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   287
       (SpecCollection
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   288
          collection: (
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   289
           (RadioButtonSpec
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   290
              label: 'Instance'
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   291
              name: 'InstanceToggle'
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   292
              layout: (LayoutFrame 0 0.0 0 0.0 0 0.5 25 0)
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   293
              translateLabel: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   294
              tabable: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   295
              model: notMetaToggle
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   296
              isTriggerOnDown: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   297
              select: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   298
              isToggle: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   299
            )
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   300
           (RadioButtonSpec
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   301
              label: 'Class'
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   302
              name: 'ClassToggle'
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   303
              layout: (LayoutFrame 0 0.5 0 0 0 1.0 25 0)
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   304
              translateLabel: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   305
              labelChannel: metaToggleLabelHolder
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   306
              tabable: false
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   307
              model: metaToggle
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   308
              isTriggerOnDown: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   309
              select: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   310
              isToggle: true
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   311
            )
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   312
           )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   313
         
7488
f38fbf8028e5 dont tab into class-toggle
Claus Gittinger <cg@exept.de>
parents: 7058
diff changeset
   314
        )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   317
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
!NavigatorModel class methodsFor:'misc'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   319
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
classResources
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
    ^ NewSystemBrowser classResources
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   323
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   324
!NavigatorModel class methodsFor:'queries'!
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   325
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   326
hasSubversionSupport
11159
1815b3c8add1 Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
vrany
parents: 10676
diff changeset
   327
    ^ ConfigurableFeatures includesFeature: #SubversionSupportEnabled
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   328
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   329
    "Created: / 06-04-2010 / 11:09:07 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   330
    "Modified: / 07-09-2011 / 10:45:45 / cg"
11159
1815b3c8add1 Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
vrany
parents: 10676
diff changeset
   331
    "Modified: / 19-01-2012 / 10:43:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   332
! !
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   333
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   334
!NavigatorModel methodsFor:'misc'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   335
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   336
resources
8722
a1ce8e925f55 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8719
diff changeset
   337
    "answer the resources of my masterApp, if there is one"
a1ce8e925f55 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8719
diff changeset
   338
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   339
    |m|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   340
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   341
    (m := self masterApplication) notNil ifTrue:[
8722
a1ce8e925f55 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8719
diff changeset
   342
        ^ m resources
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   343
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   344
    ^ super resources
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   345
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   346
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   347
!NavigatorModel methodsFor:'queries'!
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   348
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   349
hasSubversionSupport
11159
1815b3c8add1 Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
vrany
parents: 10676
diff changeset
   350
    ^ ConfigurableFeatures includesFeature: #SubversionSupportEnabled
10676
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   351
b0db71d83075 ask comon feature list if svn is avail
Claus Gittinger <cg@exept.de>
parents: 10359
diff changeset
   352
    "Modified: / 07-09-2011 / 10:45:49 / cg"
11159
1815b3c8add1 Use Configurable includesFeature:#Feature instead of direct send of #hasFeature
vrany
parents: 10676
diff changeset
   353
    "Modified: / 19-01-2012 / 10:43:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   354
! !
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   355
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   356
!NavigatorModel class methodsFor:'documentation'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   357
10359
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   358
version
12042
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   359
    ^ '$Header: /cvs/stx/stx/libtool/Tools_NavigatorModel.st,v 1.23 2012-11-07 13:57:05 cg Exp $'
10359
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   360
!
Claus Gittinger <cg@exept.de>
parents: 10358
diff changeset
   361
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   362
version_CVS
12042
e6d76cfa0b1b classesWithExtensions
Claus Gittinger <cg@exept.de>
parents: 11866
diff changeset
   363
    ^ '$Header: /cvs/stx/stx/libtool/Tools_NavigatorModel.st,v 1.23 2012-11-07 13:57:05 cg Exp $'
8866
c4678ec9944b added: #nameListEntryForLong
Claus Gittinger <cg@exept.de>
parents: 8754
diff changeset
   364
!
c4678ec9944b added: #nameListEntryForLong
Claus Gittinger <cg@exept.de>
parents: 8754
diff changeset
   365
10248
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   366
version_SVN
3237dc7fbfb8 Merged with JV's branch
vrany
parents: 9130
diff changeset
   367
    ^ '§Id: Tools__NavigatorModel.st 7802 2011-07-05 18:33:36Z vranyj1 §'
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   368
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   369
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   370
NavigatorModel initialize!