Tools_MethodCategoryList.st
author Claus Gittinger <cg@exept.de>
Sat, 20 Oct 2012 15:49:14 +0200
changeset 11865 8f5b3656de91
parent 11861 d4f6399526ac
child 11875 276c565756ed
permissions -rw-r--r--
changed: #listOfMethodCategories #makeGenerator #methodInfoFor:in:selector:lazy:
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
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
     3
              All Rights Reserved
5591
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
BrowserList subclass:#MethodCategoryList
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    17
	instanceVariableNames:'variableFilter filterClassVars lastSelectedProtocols classes
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    18
		leafClasses protocolList rawProtocolList selectedProtocolIndices
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    19
		lastGeneratedProtocols packageFilterOnInput
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    20
		methodVisibilityHolder noAllItem noPseudoItems
10231
7668da04e202 coverageInfo aspect lifted
Claus Gittinger <cg@exept.de>
parents: 10185
diff changeset
    21
		showPseudoProtocols'
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    22
	classVariableNames:'AdditionalEmptyCategoriesPerClassName MethodInfoCache
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    23
		MethodInfoCacheAccessLock'
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    24
	poolDictionaries:''
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    25
	category:'Interface-Browsers-New'
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
    28
Object subclass:#CachedMethodInfo
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    29
	instanceVariableNames:'flags'
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    30
	classVariableNames:'FlagObsolete FlagSendsSuper FlagIsUncommented
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    31
		FlagIsDocumentationMethod FlagIsLongMethod FlagIsExtension
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
    32
		FlagIsRedefine FlagIsRedefined FlagIsOverride
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
    33
		FlagIsSubclassResponsibility FlagIsTest FlagIsAnnotated'
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    34
	poolDictionaries:''
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    35
	privateIn:MethodCategoryList
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
    36
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
    37
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
    38
Method variableSubclass:#MissingMethod
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    39
	instanceVariableNames:'selector'
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    40
	classVariableNames:''
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    41
	poolDictionaries:''
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
    42
	privateIn:MethodCategoryList
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
    43
!
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
    44
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!MethodCategoryList class methodsFor:'documentation'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
copyright
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
 COPYRIGHT (c) 2000 by eXept Software AG
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
    50
              All Rights Reserved
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
 This software is furnished under a license and may be used
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
 only in accordance with the terms of that license and with the
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
 inclusion of the above copyright notice.   This software may not
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
 be provided or otherwise made available to, or used by, any
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
 other person.  No title to or ownership of the software is
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
 hereby transferred.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    61
!MethodCategoryList class methodsFor:'initialization'!
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    62
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    63
flushMethodInfo
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    64
    MethodInfoCache := Dictionary new.
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
    65
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
    66
    "
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
    67
     self flushMethodInfo
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
    68
    "
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    69
!
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    70
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    71
initialize
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    72
    MethodInfoCache := Dictionary new.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    73
    MethodInfoCacheAccessLock := RecursionLock new.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    74
! !
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
    75
10551
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    76
!MethodCategoryList class methodsFor:'cleanup'!
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    77
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    78
lowSpaceCleanup
10552
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
    79
    self flushMethodInfo
10551
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    80
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    81
    "Created: / 08-08-2011 / 19:15:25 / cg"
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    82
! !
411e90fd6ee6 added: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10548
diff changeset
    83
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
!MethodCategoryList class methodsFor:'interface specs'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
singleProtocolWindowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
     UIPainter new openOnClass:MethodCategoryList andSelector:#singleProtocolWindowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
     MethodCategoryList new openInterface:#singleProtocolWindowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
    ^ 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
     #(#FullSpec
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   102
        #name: #singleProtocolWindowSpec
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   103
        #window: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
       #(#WindowSpec
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   105
          #label: 'ProtocolList'
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   106
          #name: 'ProtocolList'
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   107
          #min: #(#Point 0 0)
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   108
          #max: #(#Point 1024 721)
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   109
          #bounds: #(#Rectangle 12 22 312 322)
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   110
        )
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   111
        #component: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
       #(#SpecCollection
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   113
          #collection: #(
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   114
           #(#LabelSpec
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   115
              #label: 'ProtocolName'
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   116
              #name: 'ProtocolLabel'
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   117
              #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 25 0)
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   118
              #translateLabel: true
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   119
              #labelChannel: #protocolLabelHolder
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   120
              #menu: #menuHolder
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   121
            )
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   122
           )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
         
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   124
        )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
    "Do not manually edit this!! If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
     UIPainter new openOnClass:MethodCategoryList andSelector:#windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
     MethodCategoryList new openInterface:#windowSpec
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
     MethodCategoryList open
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
    "
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
    <resource: #canvas>
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
    ^ 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
     #(#FullSpec
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   145
        #name: #windowSpec
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   146
        #window: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
       #(#WindowSpec
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   148
          #label: 'ProtocolList'
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   149
          #name: 'ProtocolList'
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   150
          #min: #(#Point 0 0)
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   151
          #bounds: #(#Rectangle 16 46 316 346)
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   152
        )
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   153
        #component: 
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
       #(#SpecCollection
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   155
          #collection: #(
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   156
           #(#SequenceViewSpec
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   157
              #name: 'List'
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   158
              #layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   159
              #tabable: true
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   160
              #model: #selectedProtocolIndices
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   161
              #menu: #menuHolder
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   162
              #hasHorizontalScrollBar: true
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   163
              #hasVerticalScrollBar: true
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   164
              #miniScrollerHorizontal: true
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   165
              #isMultiSelect: true
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   166
              #valueChangeSelector: #selectionChangedByClick
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   167
              #useIndex: true
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   168
              #sequenceList: #protocolList
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   169
              #doubleClickChannel: #doubleClickChannel
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   170
              #properties: 
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   171
             #(#PropertyListDictionary
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   172
                #dragArgument: nil
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   173
                #dropArgument: nil
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   174
                #canDropSelector: #canDropContext:
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   175
                #dropSelector: #doDropContext:
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   176
              )
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   177
            )
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   178
           )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
         
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   180
        )
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
      )
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   183
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   184
!MethodCategoryList class methodsFor:'plugIn spec'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   185
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   186
aspectSelectors
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
    "This resource specification was automatically generated
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
     by the UIPainter of ST/X."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
    "Do not manually edit this. If it is corrupted,
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   191
     the UIPainter may not be able to read the specification."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   192
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
    "Return a description of exported aspects;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
     these can be connected to aspects of an embedding application
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
     (if this app is embedded in a subCanvas)."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   197
    ^ #(
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   198
        #(#doubleClickChannel #action )
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   199
        #filterClassVars
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   200
        #forceGeneratorTrigger
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   201
        #immediateUpdate
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   202
        #inGeneratorHolder
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   203
        #menuHolder
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   204
        #noAllItem
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   205
        #showPseudoProtocols
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   206
        #outGeneratorHolder
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   207
        #packageFilter
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   208
        #packageFilterOnInput
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   209
        #selectedProtocols
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   210
        #selectionChangeCondition
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   211
        #updateTrigger
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   212
        #variableFilter
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   213
        #methodVisibilityHolder
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
   214
        #showCoverageInformation
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   215
      ).
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
   216
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
   217
    "Modified: / 27-04-2010 / 16:40:39 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   218
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   219
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
!MethodCategoryList methodsFor:'aspects'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
browserNameList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
    ^ self protocolList 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
defaultSlaveModeValue
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
    ^ false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
filterClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
    filterClassVars isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   232
        filterClassVars := false asValue.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   233
        filterClassVars addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
    ^  filterClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
    "Modified: / 31.1.2000 / 00:56:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
filterClassVars:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
    filterClassVars notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   243
        filterClassVars removeDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
    filterClassVars := aValueHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
    filterClassVars notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   247
        filterClassVars addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   249
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   250
    "Modified: / 31.1.2000 / 00:56:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   251
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   252
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   253
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   254
methodVisibilityHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   255
    methodVisibilityHolder isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   256
        methodVisibilityHolder := false asValue.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   257
        methodVisibilityHolder addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   258
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   259
    ^  methodVisibilityHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   260
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   261
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   262
methodVisibilityHolder:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   263
    methodVisibilityHolder notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   264
        methodVisibilityHolder removeDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   265
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   266
    methodVisibilityHolder := aValueHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   267
    methodVisibilityHolder notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   268
        methodVisibilityHolder addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   269
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   271
    "Modified: / 31.1.2000 / 00:56:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   272
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   273
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   274
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   275
noAllItem
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   276
    noAllItem isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   277
        noAllItem := false asValue.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   278
        noAllItem addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   279
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   280
    ^  noAllItem
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   281
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   282
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   283
noAllItem:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   284
    noAllItem notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   285
        noAllItem removeDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   286
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   287
    noAllItem := aValueHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   288
    noAllItem notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   289
        noAllItem addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   290
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   291
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   292
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   293
packageFilterOnInput
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   294
    packageFilterOnInput isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   295
        packageFilterOnInput := nil asValue.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   296
        packageFilterOnInput addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   297
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   298
    ^  packageFilterOnInput
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   299
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   300
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   301
packageFilterOnInput:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
    |prevFilter|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
    prevFilter := packageFilterOnInput value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
    packageFilterOnInput notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   306
        packageFilterOnInput removeDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   307
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   308
    packageFilterOnInput := aValueHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
    packageFilterOnInput notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   310
        packageFilterOnInput addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   312
    prevFilter ~= packageFilterOnInput value ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   313
        self enqueueDelayedUpdateList
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   314
    ].
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
protocolLabelHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   318
    ^ self pseudoListLabelHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   319
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   320
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   321
protocolList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   322
    protocolList isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   323
        protocolList := List new. "/ ValueHolder new
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   324
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   325
    ^ protocolList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   326
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   327
    "Modified: / 31.1.2000 / 00:56:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   328
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   330
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
rawProtocolList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   332
    rawProtocolList isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   333
        rawProtocolList := List new.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   334
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   335
    ^ rawProtocolList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   336
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   337
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   338
selectedProtocolIndices
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   339
    selectedProtocolIndices isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   340
        selectedProtocolIndices := ValueHolder new.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   341
        selectedProtocolIndices addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   342
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   343
    ^ selectedProtocolIndices.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   344
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   345
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   346
selectedProtocols
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   347
    ^ self selectionHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   348
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   349
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   350
selectedProtocols:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   351
    ^ self selectionHolder:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   352
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   353
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   354
showPseudoProtocols
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   355
    showPseudoProtocols isNil ifTrue:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   356
        showPseudoProtocols := true asValue.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   357
        showPseudoProtocols addDependent:self
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   358
    ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   359
    ^  showPseudoProtocols
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   360
!
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   361
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   362
showPseudoProtocols:aValueHolder
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   363
    showPseudoProtocols notNil ifTrue:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   364
        showPseudoProtocols removeDependent:self
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   365
    ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   366
    showPseudoProtocols := aValueHolder.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   367
    showPseudoProtocols notNil ifTrue:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   368
        showPseudoProtocols addDependent:self
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   369
    ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   370
!
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   371
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   372
variableFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   373
    variableFilter isNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   374
        variableFilter := false asValue.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   375
        variableFilter addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   376
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   377
    ^  variableFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   378
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   379
    "Modified: / 31.1.2000 / 00:56:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   380
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   381
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   382
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   383
variableFilter:aValueHolder
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   384
    variableFilter notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   385
        variableFilter removeDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   386
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   387
    variableFilter := aValueHolder.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   388
    variableFilter notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   389
        variableFilter addDependent:self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   390
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   391
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   392
    "Modified: / 31.1.2000 / 00:56:31 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   393
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   394
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   395
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   396
!MethodCategoryList methodsFor:'change & update'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   397
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   398
classDefinitionChanged:aClass
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   399
    |refetch anyChange|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   400
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   401
    anyChange := false.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   402
    refetch := [:oldClass | 
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   403
                    |nm cls newClass|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   404
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   405
                    nm := oldClass theNonMetaclass name.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   406
                    oldClass isMeta ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   407
                        newClass := Smalltalk at:nm.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   408
                        newClass isNil ifTrue:[
10185
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   409
                            "/ Transcript showCR:'oops - browser lost class ' , nm.
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   410
                            newClass := oldClass
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   411
                        ] ifFalse:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   412
                            newClass := newClass theMetaclass
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   413
                        ]
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   414
                    ] ifFalse:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   415
                        newClass := Smalltalk at:nm
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   416
                    ].
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   417
                    newClass ~~ oldClass ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   418
                        anyChange := true.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   419
                    ].
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   420
                    newClass
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   421
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   422
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   423
    classes := classes collect:refetch.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   424
    leafClasses := leafClasses collect:refetch.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   425
    anyChange ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   426
        self updateOutputGenerator
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   427
    ].
10185
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   428
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   429
    "Modified: / 06-07-2011 / 11:44:13 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   430
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   431
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   432
delayedUpdate:something with:aParameter from:changedObject
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   433
    |sel oldMethod newMethod mthd selectedCategories selectedProtocolsHolder oldProtocol newProtocol
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   434
     rawProtocolListHolder rawProtocolList oldSelectedProtocols newSelectedProtocols newIndices idx cls listView|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   435
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   436
    selectedProtocolsHolder := self selectedProtocols.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   437
    rawProtocolListHolder := self rawProtocolList.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   438
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   439
    changedObject == Smalltalk ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   440
        classes notNil ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   441
            something == #methodCategory ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   442
                cls := aParameter at:1.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   443
                (cls notNil and:[classes includesIdentical:cls]) ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   444
                    mthd := aParameter at:2.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   445
                    newProtocol := mthd category.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   446
                    oldProtocol := aParameter at:3.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   447
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   448
                    listValid == true ifTrue:[ self invalidateList ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   449
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   450
                    selectedCategories := selectedProtocolsHolder value.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   451
                    selectedCategories size > 0 ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   452
                        selectedCategories := selectedCategories collect:[:each | each ifNil:[self class nameListEntryForNILCategory]].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   453
                        selectedCategories := selectedCategories collect:[:each | each string].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   454
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   455
                        ((selectedCategories includes:oldProtocol)
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   456
                        or:[ (selectedCategories includes:newProtocol)
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   457
                        or:[ selectedCategories includes:(self class nameListEntryForALL) ]])
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   458
                        ifTrue:[
10720
82b4939aafc5 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10712
diff changeset
   459
                            self enqueueDelayedUpdateOutputGenerator "/ updateOutputGenerator.
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   460
                        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   461
                    ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   462
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   463
                ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   464
                ^ self
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   465
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   466
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   467
            something == #methodInClass ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   468
                "/ a method has been added/removed/changed
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   469
                cls := aParameter at:1.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   470
                (classes includesIdentical:cls) ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   471
                    sel := aParameter at:2.
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   472
                    self flushMethodInfoForClassNamed:cls name selector:sel.
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   473
                    oldMethod := aParameter at:3.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   474
                    newMethod := cls compiledMethodAt:sel.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   475
                    oldMethod notNil ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   476
                        variableFilter value size > 0 ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   477
                            "/ sigh - must invalidate
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   478
                            listValid == true ifTrue:[ self invalidateList ].
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   479
                        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   480
                        ^ self.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   481
                    ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   482
                    "/ method was added - update the methodList
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   483
                    "/ Q: is this needed (methodCategoryList should send me a new inGenerator)
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   484
                    listValid == true ifTrue:[ self invalidateList ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   485
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   486
                    "/ if its category is selected, updateOutputGenerator
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   487
                    selectedCategories := selectedProtocolsHolder value.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   488
                    selectedCategories size > 0 ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   489
                        selectedCategories := selectedCategories collect:[:each | each ifNil:[self class nameListEntryForNILCategory]].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   490
                        selectedCategories := selectedCategories collect:[:each | each string].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   491
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   492
                        ((oldMethod notNil and:[selectedCategories includes:(oldMethod category)])
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   493
                        or:[ (newMethod notNil and:[selectedCategories includes:(newMethod category)])])
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   494
                        ifTrue:[
10720
82b4939aafc5 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10712
diff changeset
   495
                            self enqueueDelayedUpdateOutputGenerator "/ updateOutputGenerator.
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   496
                        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   497
                    ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   498
                ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   499
                ^ self.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   500
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   501
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   502
            something == #methodInClassRemoved ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   503
                cls := aParameter at:1.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   504
                (classes includesIdentical:cls) ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   505
                    sel := aParameter at:2.
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   506
                    self flushMethodInfoForClassNamed:cls name selector:sel.
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   507
                    "/ method was removed - update the list and output generator
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   508
                    self invalidateList.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   509
                    "/ self updateOutputGenerator.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   510
                    self slaveMode value == true ifFalse:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   511
                        self enqueueDelayedUpdateOutputGenerator.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   512
                    ]
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   513
                ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   514
                ^ self.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   515
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   516
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
   517
            (something == #classOrganization
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
   518
            or:[ something == #methodCategoryAdded
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
   519
            or:[ something == #methodCategoryRemoved
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
   520
            or:[ something == #methodCategoriesRemoved
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
   521
            or:[ something == #methodCategoryRenamed ]]]]) ifTrue:[
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
   522
                cls := (something == #classOrganization) ifTrue:aParameter ifFalse:[aParameter first].
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   523
                (classes includesIdentical:cls) ifTrue:[
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   524
                    listValid == true ifTrue:[ self invalidateList ].
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   525
                ] ifFalse:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   526
                    (classes contains:[:aClass | aClass name = cls name]) ifTrue:[
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   527
                        listValid == true ifTrue:[ self invalidateList ].
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   528
                        "/ self error:'obsolete class: should not happen'.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   529
                    ]
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   530
                ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   531
                ^ self.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   532
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   533
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   534
            something == #projectOrganization ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   535
                aParameter notNil ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   536
                    cls := aParameter at:1.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   537
                    cls notNil ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   538
                        ((classes includes:cls theMetaclass)
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   539
                        or:[(classes includes:cls theNonMetaclass)]) ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   540
                            self invalidateList.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   541
                            self slaveMode value == true ifFalse:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   542
                                self enqueueDelayedUpdateOutputGenerator.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   543
                            ]
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   544
                        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   545
                    ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   546
                ] ifFalse:[
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   547
                    listValid == true ifTrue:[ self invalidateList ].
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   548
                ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   549
                ^ self
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   550
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   551
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   552
            (something == #methodCoverageInformation) ifTrue:[
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   553
                "/ already checked if it is one of my classes
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   554
                listValid == true ifTrue:[ self invalidateList ].
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   555
                ^ self
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   556
            ].
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   557
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   558
            (something == #classDefinition or:[something == #classVariables])
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   559
            ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   560
                self classDefinitionChanged:aParameter.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   561
                ^ self
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   562
            ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   563
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   564
            "/ everything else is ignored    
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   565
            "/ self halt.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   566
        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   567
        ^ self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   568
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   569
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   570
    changedObject == self selectedProtocolIndices ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   571
        oldSelectedProtocols := selectedProtocolsHolder value ? #().
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   572
        oldSelectedProtocols := oldSelectedProtocols collect:[:each | each ifNil:[self class nameListEntryForNILCategory]].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   573
        oldSelectedProtocols := oldSelectedProtocols collect:[:each | each string].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   574
        newSelectedProtocols := self getSelectedProtocolsFromIndices.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   575
        oldSelectedProtocols ~= newSelectedProtocols ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   576
            selectedProtocolsHolder value:newSelectedProtocols.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   577
        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   578
        newSelectedProtocols size > 1 ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   579
            (newSelectedProtocols includes:(self class nameListEntryForALL)) ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   580
                rawProtocolList := rawProtocolListHolder value.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   581
                idx := rawProtocolList indexOf: (newSelectedProtocols copy remove:(self class nameListEntryForALL); yourself) first.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   582
                idx ~~ 0 ifTrue:[
8742
b70571855d48 cleanup
Claus Gittinger <cg@exept.de>
parents: 8735
diff changeset
   583
                    (listView := self componentAt:#List) notNil ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   584
                        listView makeLineVisible:idx.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   585
                    ]
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   586
                ]
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   587
            ]
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   588
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   589
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   590
        ^ self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   591
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   592
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   593
    changedObject == selectedProtocolsHolder ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   594
        rawProtocolList := rawProtocolListHolder value.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   595
        rawProtocolList size == 0 ifTrue:[
10712
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   596
            lastGeneratedProtocols := nil.
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   597
            self updateList.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   598
            rawProtocolList := rawProtocolListHolder value.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   599
        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   600
        rawProtocolList notNil ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   601
            selectedCategories := selectedProtocolsHolder value ? #().
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   602
            selectedCategories := selectedCategories collect:[:each | each ifNil:[self class nameListEntryForNILCategory]].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   603
            newIndices := selectedCategories 
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   604
                            collect:[:each | rawProtocolList findFirst:[:p | p string = each string]].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   605
            newIndices := newIndices select:[:each | each ~~ 0].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   606
            newIndices ~= self selectedProtocolIndices value ifTrue:[
10185
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   607
                self selectedProtocolIndices 
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   608
                    setValue:nil;                    "/ to force update
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   609
                    value:newIndices.
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   610
            ].
10712
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   611
            "/ cg: does not work (selecting all with testcase classes)
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   612
            "/ don't see why, at the moment, but....
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   613
"/            (lastGeneratedProtocols notNil
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   614
"/            and:[(lastGeneratedProtocols includes:self class nameListEntryForALL)
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   615
"/            and:[(selectedCategories ? #()) includes:self class nameListEntryForALL]])
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   616
"/            ifTrue:[
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   617
"/                "/ no need to update generator
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   618
"/            ] ifFalse:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   619
                self updateOutputGenerator.
10712
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
   620
"/            ]
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   621
        ].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   622
        ^ self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   623
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   624
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   625
    (changedObject == variableFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   626
    or:[changedObject == filterClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   627
    or:[changedObject == packageFilterOnInput]]) ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   628
        self invalidateList.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   629
        ^  self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   630
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   631
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   632
    changedObject == methodVisibilityHolder ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   633
        self invalidateList.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   634
        self updateOutputGenerator.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   635
        ^  self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   636
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   637
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   638
    lastGeneratedProtocols := nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   639
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   640
    changedObject == inGeneratorHolder ifTrue:[
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   641
        selectedCategories := selectedProtocolsHolder value.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   642
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   643
        selectedCategories size > 0 ifTrue:[
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   644
            oldSelectedProtocols := selectedCategories ? #().
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   645
            oldSelectedProtocols := oldSelectedProtocols collect:[:each | each ifNil:[self class nameListEntryForNILCategory]].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   646
            oldSelectedProtocols := oldSelectedProtocols collect:[:each | each string].
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   647
            self updateList.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   648
            rawProtocolList := rawProtocolListHolder value.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   649
            newSelectedProtocols := oldSelectedProtocols select:[:each | rawProtocolList includes:each].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   650
"/            selectedProtocolsHolder setValue:nil.                    "/ to force update
6412
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   651
            selectedProtocolsHolder value:newSelectedProtocols.
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   652
            ^ self
7fc7cad1a67c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6342
diff changeset
   653
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   654
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   655
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   656
    super delayedUpdate:something with:aParameter from:changedObject
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   657
10185
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
   658
    "Created: / 05-02-2000 / 13:42:10 / cg"
10720
82b4939aafc5 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10712
diff changeset
   659
    "Modified: / 23-09-2011 / 20:37:31 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   660
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   661
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   662
getSelectedProtocolsFromIndices
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   663
    |l|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   664
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   665
    l := self rawProtocolList value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   666
    ^ self selectedProtocolIndices value collect:[:idx | l at:idx].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   667
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   668
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   669
selectionChanged
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   670
    |newSelectedCategories allEntry|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   671
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   672
    newSelectedCategories := self selectedProtocols value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   673
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   674
    "/ the outputGenerator is only to be updated, if the output would really
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   675
    "/ change ...
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   676
    allEntry := self class nameListEntryForALL.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   677
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   678
    (lastSelectedProtocols notNil
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   679
    and:[newSelectedCategories notNil
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   680
    and:[(lastSelectedProtocols includes:(allEntry))
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   681
    and:[newSelectedCategories includes:(allEntry)]]]) ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   682
        "/ no change ...
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
   683
        ^ self
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   684
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   685
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   686
    super selectionChanged.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   687
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   688
    "Created: / 5.2.2000 / 13:42:10 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   689
    "Modified: / 24.2.2000 / 14:12:12 / cg"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   690
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   691
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   692
selectionChangedByClick
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   693
    "we are not interested in that - get another notification
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   694
     via the changed valueHolder"
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   695
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   696
    lastSelectedProtocols := self getSelectedProtocolsFromIndices
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   697
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   699
update:something with:aParameter from:changedObject
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   700
    |cls sel mthd oldMethod newMethod|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   701
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   702
    "/ some can be ignored immediately
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   703
    changedObject == Smalltalk ifTrue:[
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   704
        something isNil ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   705
            "/ self halt "/ huh - Smalltalk changed - so what ?
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   706
            ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   707
        ].
6880
16c2e0d68cdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6877
diff changeset
   708
16c2e0d68cdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6877
diff changeset
   709
        something == #currentChangeSet ifTrue:[
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   710
            listValid == true ifTrue:[ self invalidateList ].
6880
16c2e0d68cdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6877
diff changeset
   711
            ^ self.
16c2e0d68cdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6877
diff changeset
   712
        ].
16c2e0d68cdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6877
diff changeset
   713
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   714
        something == #methodInClass ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   715
            "/ a method has been added/removed/changed
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   716
            cls := aParameter at:1.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   717
            (classes notNil and:[classes includesIdentical:cls]) ifFalse:[^ self].
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   718
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   719
            sel := aParameter at:2.
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   720
            self flushMethodInfoForClassNamed:cls name selector:sel.
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   721
            oldMethod := aParameter at:3.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   722
            newMethod := cls compiledMethodAt:sel.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   723
            oldMethod notNil ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   724
                variableFilter value size > 0 ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   725
                    "/ sigh - must invalidate
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   726
                    listValid == true ifTrue:[ self invalidateList ].
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   727
                    ^ self.    
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   728
                ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   729
                oldMethod category ~= newMethod category ifTrue:[
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   730
                    listValid == true ifTrue:[ self invalidateList ].
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   731
                    ^ self.    
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   732
                ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   733
                "/ mhmh - its now changed (so coloring will change).
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   734
                listValid == true ifTrue:[ self invalidateList ].
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   735
                ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   736
            ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   737
        ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   738
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   739
"/        something == #classDefinition ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   740
"/            ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   741
"/        ].
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   742
        something == #newClass ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   743
            ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   744
        ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   745
        something == #classRemove ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   746
            ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   747
        ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   748
        something == #classRename ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   749
            ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   750
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   751
"/        something == #classVariables ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   752
"/            ^ self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   753
"/        ].
6855
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   754
        something == #classComment ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   755
            ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   756
        ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   757
        something == #organization ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   758
            ^ self.
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   759
        ].
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   760
        something == #methodTrap ifTrue:[
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   761
            ^ self
93bacd7fcf14 much faster update (only invalidate once, when multiple methods are compiled)
Claus Gittinger <cg@exept.de>
parents: 6706
diff changeset
   762
        ].
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   763
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   764
        something == #methodCoverageInfo ifTrue:[
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   765
            self showCoverageInformation value ifFalse:[^ self].
10368
0f22567c01c2 changed:
Claus Gittinger <cg@exept.de>
parents: 10360
diff changeset
   766
            listValid ifFalse:[^ self ].
0f22567c01c2 changed:
Claus Gittinger <cg@exept.de>
parents: 10360
diff changeset
   767
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   768
            mthd := aParameter.
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   769
            (classes notNil and:[classes includesIdentical:mthd mclass]) ifFalse:[^ self].
10368
0f22567c01c2 changed:
Claus Gittinger <cg@exept.de>
parents: 10360
diff changeset
   770
0f22567c01c2 changed:
Claus Gittinger <cg@exept.de>
parents: 10360
diff changeset
   771
            self enqueueDelayedUpdateList.
0f22567c01c2 changed:
Claus Gittinger <cg@exept.de>
parents: 10360
diff changeset
   772
            ^ self
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
   773
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   774
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   775
11850
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   776
    something == #coverageInfo ifTrue:[
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   777
        listValid == true ifTrue:[
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   778
            self enqueueDelayedUpdateList
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   779
        ].
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   780
        ^ self.
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   781
    ].
aa9240d74afa changed: #update:with:from:
Claus Gittinger <cg@exept.de>
parents: 11717
diff changeset
   782
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   783
    super update:something with:aParameter from:changedObject.
6880
16c2e0d68cdb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6877
diff changeset
   784
11560
75a7263387f0 list invalidation
Claus Gittinger <cg@exept.de>
parents: 11462
diff changeset
   785
    "Modified: / 05-06-2012 / 23:38:31 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   786
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   787
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   788
!MethodCategoryList methodsFor:'drag & drop'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   789
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   790
canDropContext:aDropContext
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   791
    |cat methods|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   792
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   793
    methods := aDropContext dropObjects collect:[:obj | obj theObject].
7123
4dd64dbd0b87 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7056
diff changeset
   794
    (methods conform:[:aMethod | aMethod isMethod]) ifFalse:[^ false].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   795
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   796
    cat := self categoryAtTargetPointOf:aDropContext.
6492
9c446e709216 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6469
diff changeset
   797
    cat isNil ifTrue:[^ false].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   798
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   799
    (methods contains:[:aMethod | aMethod category ~= cat]) ifFalse:[^ false].
6492
9c446e709216 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6469
diff changeset
   800
    ^ true
7123
4dd64dbd0b87 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7056
diff changeset
   801
4dd64dbd0b87 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7056
diff changeset
   802
    "Modified: / 13-09-2006 / 11:44:02 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   803
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   804
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   805
categoryAtTargetPointOf:aDropContext
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   806
    |p methodListView lineNr cat|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   807
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   808
    p := aDropContext targetPoint.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   809
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   810
    methodListView := aDropContext targetWidget.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   811
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   812
    lineNr := methodListView lineAtY:p y.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   813
    lineNr isNil ifTrue:[^ nil].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   814
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   815
    cat := rawProtocolList at:lineNr.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   816
    cat := cat string.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   817
    cat = self class nameListEntryForALL ifTrue:[^ nil].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   818
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   819
    ^ cat
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   820
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   821
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   822
doDropContext:aDropContext
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
   823
    "handle dropping of a method as a category change"
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
   824
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   825
    |cat methods|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   826
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   827
    methods := aDropContext dropObjects collect:[:aDropObject | aDropObject theObject].
7123
4dd64dbd0b87 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7056
diff changeset
   828
    (methods conform:[:something | something isMethod]) ifFalse:[^ self].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   829
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   830
    cat := self categoryAtTargetPointOf:aDropContext.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   831
    cat notNil ifTrue:[
6469
10eea2ce0ca7 drag and drop cleanup
Claus Gittinger <cg@exept.de>
parents: 6412
diff changeset
   832
        self masterApplication moveMethods:methods toProtocol:cat.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   833
    ].
7123
4dd64dbd0b87 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7056
diff changeset
   834
4dd64dbd0b87 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7056
diff changeset
   835
    "Modified: / 13-09-2006 / 11:43:23 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   836
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   837
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   838
!MethodCategoryList methodsFor:'generators'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   839
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   840
makeGenerator
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   841
    "return a generator which enumerates the methods from the selected protocol;
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   842
     that generator generates 4-element elements (includes the class and protocol), 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   843
     in order to make the consumers only depend on one input 
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   844
     (i.e. to pass multiple-class and multiple-protocol info
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   845
      without a need for another classHolder/protocolHolder in the methodList)."
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   846
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   847
    ^ Iterator 
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   848
        on:[:whatToDo |
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   849
            |protocols 
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
   850
             allProtocols superSendProtocols uncommentedProtocols obsoleteProtocols 
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   851
             documentationProtocols longProtocols extensionProtocols redefinedProtocols
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   852
             redefineProtocols  overrideProtocols
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
   853
             missingRequiredProtocols subclassResponsibilities
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   854
             notInstrumentedProtocols annotatedProtocols fullyCoveredProtocols 
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   855
             partiallyCoveredProtocols uncoveredProtocols
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   856
             noCat static notStatic classSelectorPairsAlreadyDone
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   857
             packages remainingClasses remainingCategories classesAlreadyDone noPackage
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   858
             catListed|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   859
8969
225fe47fe23a variable renamed in:
Claus Gittinger <cg@exept.de>
parents: 8964
diff changeset
   860
            noPackage := PackageId noProjectID.
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   861
            noCat := (self class nameListEntryForNILCategory).
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   862
            static := (self class nameListEntryForStatic).
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   863
            notStatic := (self class nameListEntryForNonStatic).
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   864
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   865
            protocols := self selectedProtocols value ? #().
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   866
            protocols := protocols collect:[:each | (each ifNil:[noCat]) string].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   867
            lastGeneratedProtocols := protocols.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   868
            protocols := protocols asSet.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   869
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   870
            (leafClasses size > 0 and:[protocols size > 0]) ifTrue:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   871
                allProtocols := protocols includes:(self class nameListEntryForALL).
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   872
                superSendProtocols := protocols includes:(self class nameListEntryForSuperSend).
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   873
                uncommentedProtocols := protocols includes:(self class nameListEntryForUncommented).
8718
bbf03e0fcc20 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8694
diff changeset
   874
                obsoleteProtocols := protocols includes:(self class nameListEntryForObsolete).
8733
31c0ffee640f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8723
diff changeset
   875
                documentationProtocols := protocols includes:(self class nameListEntryForDocumentation).
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
   876
                longProtocols := protocols includes:(self class nameListEntryForLong).
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   877
                extensionProtocols := protocols includes:(self class nameListEntryForExtensions).
8964
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
   878
                redefinedProtocols := protocols includes:(self class nameListEntryForRedefined).
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   879
                redefineProtocols := protocols includes:(self class nameListEntryForRedefine).
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   880
                overrideProtocols := protocols includes:(self class nameListEntryForOverride).
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
   881
                missingRequiredProtocols := protocols includes:(self class nameListEntryForRequired).
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
   882
                subclassResponsibilities := protocols includes:(self class nameListEntryForMustBeRedefinedInSubclass).
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   883
                annotatedProtocols := protocols includes:(self class nameListEntryForAnnotated).
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   884
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   885
                fullyCoveredProtocols := protocols includes:(self class nameListEntryForFullyCovered).
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   886
                partiallyCoveredProtocols := protocols includes:(self class nameListEntryForPartiallyCovered).
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   887
                uncoveredProtocols := protocols includes:(self class nameListEntryForUncovered).
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   888
                notInstrumentedProtocols := protocols includes:(self class nameListEntryForNotInstrumented).
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   889
            
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   890
                packages := packageFilter value value.
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   891
                (packages notNil and:[packages includes:(self class nameListEntryForALL)]) ifTrue:[
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   892
                    packages := nil.
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   893
                ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   894
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   895
                remainingClasses := leafClasses copy asIdentitySet.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   896
                remainingCategories := protocols copy asSet.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   897
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   898
                classesAlreadyDone := IdentitySet new.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   899
                classSelectorPairsAlreadyDone := Set new.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   900
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   901
                leafClasses do:[:aLeafClass |  
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   902
                    (self classesToProcessForClasses:(Array with:aLeafClass)) do:[:aClass |
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
   903
                        |supportsMethodCategories isJavaClass anyInThisClass requiredProtocolForClass|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   904
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   905
                        (classesAlreadyDone includes:aClass) ifFalse:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   906
                            classesAlreadyDone add:aClass.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   907
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   908
                            supportsMethodCategories := aClass supportsMethodCategories.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   909
                            isJavaClass := aClass isJavaClass.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   910
                            anyInThisClass := false.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   911
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   912
                            aClass methodDictionary keysAndValuesDo:[:sel :mthd |
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   913
                                |cat mPkg includeIt info|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   914
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   915
"/ sel == #metacelloCleanup ifTrue:[self halt].
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   916
                                supportsMethodCategories ifTrue:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   917
                                    cat := mthd category.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   918
                                ] ifFalse:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   919
                                    isJavaClass ifTrue:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   920
                                        cat := mthd isStatic ifTrue:[static] ifFalse:[notStatic]
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   921
                                    ] ifFalse:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   922
                                        cat := noCat.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   923
                                    ]
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
   924
                                ].
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   925
                                catListed := cat.
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   926
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   927
                                mPkg := mthd package.
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   928
                                (packages isNil 
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   929
                                    or:[ mPkg = noPackage 
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   930
                                    or:[ (packages includes:mPkg)
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   931
                                    or:[ (extensionProtocols and:[ mthd isExtension ])
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   932
                                    ]]]
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   933
                                ) ifTrue:[
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   934
                                    "/ used to be a more readable or, but to reuse info, I've splitted it.
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   935
                                    "/ because we should use the parser only once, we reuse the same methodInfo.
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   936
                                    "/ otherwise, the list update becomes too slow for long classes (NewSystemBrowser)
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   937
                                    includeIt := allProtocols.
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   938
                                    includeIt ifFalse:[ includeIt := protocols includes:cat ].
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   939
                                    includeIt ifFalse:[
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   940
                                        superSendProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   941
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   942
                                            includeIt := info sendsSuper ]]. 
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   943
                                    includeIt ifFalse:[
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   944
                                        uncommentedProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   945
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   946
                                            includeIt := info isUncommented.
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   947
                                            catListed := self class nameListEntryForUncommented ]]. 
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   948
                                    includeIt ifFalse:[ 
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   949
                                        obsoleteProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   950
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   951
                                            includeIt := info isObsolete ]]. 
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   952
                                    includeIt ifFalse:[ 
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   953
                                        documentationProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   954
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   955
                                            includeIt := info isDocumentationMethod ]].
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
   956
                                    includeIt ifFalse:[ 
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
   957
                                        longProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   958
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
   959
                                            includeIt := info isLongMethod ]].
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   960
                                    includeIt ifFalse:[ 
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   961
                                        extensionProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   962
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   963
                                            includeIt := info isExtensionMethod.
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   964
                                            catListed := self class nameListEntryForExtensions ]].
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   965
                                    includeIt ifFalse:[ 
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   966
                                        overrideProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   967
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
   968
                                            includeIt := info isOverride ]].
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   969
"/                                    includeIt ifFalse:[ 
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   970
"/                                        redefinedProtocols ifTrue:[
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   971
"/                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   972
"/                                            includeIt := info isRedefined ]].
8964
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
   973
                                    includeIt ifFalse:[ 
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
   974
                                        redefineProtocols ifTrue:[
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
   975
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
8964
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
   976
                                            includeIt := info isRedefine ]].
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
   977
                                    includeIt ifFalse:[
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
   978
                                        subclassResponsibilities ifTrue:[
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
   979
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
   980
                                            includeIt := info isSubclassResponsibility ]].
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   981
                                    includeIt ifFalse:[
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   982
                                        annotatedProtocols ifTrue:[
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   983
                                            info isNil ifTrue:[ info := self methodInfoFor:mthd in:aClass selector:sel ].
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   984
                                            includeIt := info isAnnotated ]].
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
   985
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   986
                                    includeIt ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   987
                                        mthd isInstrumented ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   988
                                            mthd hasBeenCalled ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   989
                                                mthd haveAllBlocksBeenExecuted ifTrue:[
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   990
                                                    includeIt := fullyCoveredProtocols.
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   991
                                                ] ifFalse:[
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   992
                                                    includeIt := partiallyCoveredProtocols 
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   993
                                                ]
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   994
                                            ] ifFalse:[
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   995
                                                includeIt := uncoveredProtocols
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   996
                                            ].
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   997
                                        ] ifFalse:[
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
   998
                                            includeIt := notInstrumentedProtocols
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
   999
                                        ].
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
  1000
                                    ].
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
  1001
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1002
                                    includeIt ifTrue:[
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1003
                                        (methodVisibilityHolder value == #class) ifTrue:[
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1004
                                            whatToDo value:aClass value:catListed value:sel value:mthd.
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1005
                                        ] ifFalse:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1006
                                            (classSelectorPairsAlreadyDone includes:(aLeafClass->sel)) ifFalse:[
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1007
                                                classSelectorPairsAlreadyDone add:(aLeafClass->sel).
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1008
                                                whatToDo value:aClass value:catListed value:sel value:mthd.
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1009
                                            ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1010
                                        ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1011
                                        anyInThisClass := true.
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1012
                                        remainingCategories remove:catListed ifAbsent:nil.
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1013
                                    ].
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1014
                                ]
7296
dfea12500274 do not suppress loose methods
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
  1015
                            ].
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1016
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1017
                            missingRequiredProtocols ifTrue:[
9729
0d29623f7e10 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 9465
diff changeset
  1018
                                requiredProtocolForClass := SmalltalkCodeGeneratorTool missingRequiredProtocolFor:aClass.
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1019
                                requiredProtocolForClass do:[:sel | 
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1020
                                    |selectorInRed missingMethodPlaceHolder|
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1021
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1022
                                    selectorInRed := sel colorizeAllWith:Color red.
9043
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  1023
                                    missingMethodPlaceHolder := MissingMethod mclass:aClass selector:sel.
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1024
                                    whatToDo value:aClass value:'required' value:selectorInRed value:missingMethodPlaceHolder.
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1025
                                ].
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1026
                            ].
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1027
                            anyInThisClass ifTrue:[ remainingClasses remove:aClass ifAbsent:nil. ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1028
                        ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1029
                    ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1030
                ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1031
                remainingClasses do:[:aClass |
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1032
                    whatToDo value:aClass value:nil value:nil value:nil.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1033
                ].
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1034
                remainingCategories do:[:cat |
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1035
                    whatToDo value:nil value:cat value:nil value:nil.
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1036
                ]
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1037
            ]
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1038
      ]
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1039
7296
dfea12500274 do not suppress loose methods
Claus Gittinger <cg@exept.de>
parents: 7123
diff changeset
  1040
    "Created: / 05-02-2000 / 13:42:10 / cg"
10712
da12d4dac8b9 changed: #delayedUpdate:with:from:
Claus Gittinger <cg@exept.de>
parents: 10687
diff changeset
  1041
    "Modified: / 18-09-2011 / 12:51:45 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1042
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1043
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1044
!MethodCategoryList methodsFor:'private'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1045
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1046
class:cls protocol:cat includesMethodsInAnyPackage:packageFilter
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1047
    cls methodDictionary keysAndValuesDo:[:sel :mthd |
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1048
        mthd category == cat ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1049
            (packageFilter includes:mthd package) ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1050
                ^ true
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1051
            ]
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1052
        ]
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1053
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1054
    ^ false
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1055
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1056
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1057
class:cls protocol:cat includesModsOfClassVariable:variablesToHighLight
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1058
    "are there any methods in the protocol cat which modify any class variable in variablesToHighLight ?"
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1059
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1060
    ^ self class:cls protocol:cat includesRefsToVariable:variablesToHighLight askParserWith:#modifiedClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1061
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1062
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1063
class:cls protocol:cat includesModsOfInstanceVariable:variablesToHighLight
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1064
    "are there any methods in the protocol cat which modify any inst variable in variablesToHighLight ?"
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1065
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1066
    ^ self class:cls protocol:cat includesRefsToVariable:variablesToHighLight askParserWith:#modifiedInstVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1067
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1068
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1069
class:cls protocol:cat includesRefsToClassVariable:variablesToHighLight
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1070
    "are there any methods in the protocol cat which reference any class variable in variablesToHighLight ?"
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1071
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1072
    ^ self class:cls protocol:cat includesRefsToVariable:variablesToHighLight askParserWith:#usedClassVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1073
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1074
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1075
class:cls protocol:cat includesRefsToInstanceVariable:variablesToHighLight
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1076
    "are there any methods in the protocol cat which reference any inst variable in variablesToHighLight ?"
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1077
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1078
    ^ self class:cls protocol:cat includesRefsToVariable:variablesToHighLight askParserWith:#usedInstVars
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1079
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1080
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1081
class:cls protocol:cat includesRefsToVariable:variablesToHighLight askParserWith:querySelector
9243
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1082
    "are there any methods in the protocol cat which reference/modify any inst/class variable in variablesToHighLight ?"
f3e49ecd92be comment/format in:
Claus Gittinger <cg@exept.de>
parents: 9128
diff changeset
  1083
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1084
    |anyVarNameAccessable|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1085
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1086
    anyVarNameAccessable := cls allInstVarNames includesAny:variablesToHighLight.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1087
    anyVarNameAccessable ifFalse:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1088
        anyVarNameAccessable := cls theNonMetaclass allClassVarNames includesAny:variablesToHighLight.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1089
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1090
    anyVarNameAccessable ifFalse:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1091
        "/ no need to parse
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1092
        ^ false
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1093
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1094
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1095
    cls selectorsAndMethodsDo:[:sel :mthd |
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1096
        |src parser usedVars|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1097
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1098
        mthd category = cat ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1099
            src := mthd source.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1100
            src notNil ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1101
                "
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1102
                 before doing a slow parse, quickly scan the
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1103
                 methods source for the variables name ...
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1104
                "
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1105
                (variablesToHighLight contains:[:varName | (src findString:varName) ~~ 0]) ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1106
                    parser := Parser
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1107
                                    parseMethod:src 
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1108
                                    in:cls 
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1109
                                    ignoreErrors:true 
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1110
                                    ignoreWarnings:true.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1111
                    (parser notNil and:[parser ~~ #Error]) ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1112
                        usedVars := parser perform:querySelector.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1113
                        (usedVars includesAny:variablesToHighLight)
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1114
                        ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1115
                            ^  true
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1116
                        ]
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1117
                    ]
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1118
                ]        
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1119
            ] ifFalse:[
10185
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
  1120
                Transcript showCR:'Oops - cannot access method source'.
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1121
            ]        
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1122
        ]
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1123
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1124
    ^ false
10185
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
  1125
6428d75e11bb comment/format in: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 10180
diff changeset
  1126
    "Modified: / 06-07-2011 / 11:44:25 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1127
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1128
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1129
classesToProcessForClasses:classes
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1130
    ^ self classesToProcessForClasses:classes withVisibility:methodVisibilityHolder value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1131
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1132
8961
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1133
commonPostOpen
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1134
    super commonPostOpen.
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1135
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1136
    self showPseudoProtocols ifTrue:[
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1137
        "/ revalidate my list, because it was only shown lazy
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1138
        self invalidateList.
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1139
    ].
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1140
!
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1141
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1142
flushMethodInfoForClassNamed:className selector:selector
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1143
    MethodInfoCacheAccessLock critical:[
10552
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1144
        MethodInfoCache notNil ifTrue:[
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1145
            MethodInfoCache 
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1146
                removeKey:(className,'>>',selector)
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1147
                ifAbsent:[]
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1148
        ].
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1149
    ]
10552
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1150
b7f2aa57ab63 changed: #lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 10551
diff changeset
  1151
    "Modified: / 08-08-2011 / 19:16:32 / cg"
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1152
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1153
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1154
listOfMethodCategories
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1155
    |categoryList categoryBag plainCategories classesProcessed leafClassesProcessed
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1156
     generator nm variablesToHighlight classVarsToHighLight
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1157
     itemsWithVarRefs itemsWithVarMods itemsWithExtensions itemsWithSuppressedExtensions
7501
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1158
     itemsInChangeSet itemsInRemoteChangeSet
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1159
     itemsWithInstrumentedMethods itemsWithCalledMethods itemsWithUncalledMethods
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1160
     itemsWithPartiallyCoveredMethods itemsWithFullyCoveredMethods
8723
2d676b11e886 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8718
diff changeset
  1161
     packageFilterOnInput packageFilter nameListEntryForALL changeSet 
2d676b11e886 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8718
diff changeset
  1162
     emphasizedPlus emphasisForRef emphasisForMod
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1163
     numAll numObsolete numSuper numUncommented numDocumentation numLong numOverride
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1164
     numRedefine numRedefined numExtension numMissingRequired numSubclassResponsibility
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1165
     numAnnotated numFullyCovered numPartiallyCovered numUncovered numNotInstrumented 
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1166
     showPseudoProtocols showCoverageInformation
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1167
     addPseudoEntry addPseudoEntryWithColor countAll pseudoEntryColor userPreferences
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1168
     startTime lazyPseudoProtocols needsSpecialColoring|
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
  1169
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1170
    userPreferences := UserPreferences current.
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
  1171
    countAll := true.
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1172
    startTime := Timestamp now.
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1173
    lazyPseudoProtocols := false.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1174
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1175
    generator := inGeneratorHolder value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1176
    generator isNil ifTrue:[ ^ #() ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1177
8982
ac5d734dfedd changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 8969
diff changeset
  1178
    showPseudoProtocols := self showPseudoProtocols value 
9281
249720ced980 changed: #listOfMethodCategories
Stefan Vogel <sv@exept.de>
parents: 9243
diff changeset
  1179
                                and:[builder window notNil and:[builder window shown]].
10348
523f025190ff changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 10297
diff changeset
  1180
    showCoverageInformation := self showCoverageInformation value.
8961
37e61f2e4cf1 added: #commonPostOpen
Claus Gittinger <cg@exept.de>
parents: 8931
diff changeset
  1181
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
    nameListEntryForALL := self class nameListEntryForALL.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1184
    packageFilterOnInput := self packageFilterOnInput value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1185
    (packageFilterOnInput notNil and:[packageFilterOnInput includes:nameListEntryForALL]) ifTrue:[
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1186
        packageFilterOnInput := nil
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1187
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1188
    packageFilter := self packageFilter value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1189
    (packageFilter notNil and:[packageFilter includes:nameListEntryForALL]) ifTrue:[
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1190
        packageFilter := nil
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1191
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1192
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1193
    categoryList := Set new.
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1194
    categoryBag := Bag new.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1195
    itemsWithVarRefs := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1196
    itemsWithVarMods := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1197
    itemsWithExtensions := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1198
    itemsWithSuppressedExtensions := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1199
    itemsInChangeSet := Set new.
7501
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1200
    itemsInRemoteChangeSet := Set new.
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1201
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1202
    itemsWithInstrumentedMethods := Set new.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1203
    itemsWithCalledMethods := Set new. 
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1204
    itemsWithUncalledMethods := Set new. 
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1205
    itemsWithPartiallyCoveredMethods := Set new.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1206
    itemsWithFullyCoveredMethods := Set new.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1207
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1208
    plainCategories := Set new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1209
    classesProcessed := IdentitySet new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1210
    leafClassesProcessed := IdentitySet new.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1211
    variablesToHighlight := variableFilter value.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1212
    classVarsToHighLight := filterClassVars value.
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1213
    numObsolete := numSuper := numUncommented := numDocumentation := numLong := 0.
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1214
    numRedefine := numRedefined := numOverride := numExtension := numMissingRequired := numSubclassResponsibility := 0.
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
  1215
    numNotInstrumented := numFullyCovered := numPartiallyCovered := numUncovered := 0.
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1216
    numAnnotated := 0.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1217
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1218
    generator do:[:clsIn :catIn | 
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1219
                        |emptyProtocols clsName doHighLight doHighLightRed suppress includedCats|
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1220
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1221
                        includedCats := Set new.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1222
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1223
                        leafClassesProcessed add:clsIn.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1224
                        (self classesToProcessForClasses:(Array with:clsIn)) do:[:cls |
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1225
                            |cats processCategory|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1226
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1227
                            classesProcessed add:cls.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1228
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1229
                            cls ~~ clsIn ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1230
                                cats := cls categories
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1231
                            ] ifFalse:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1232
                                cats := Array with:catIn.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1233
                            ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1234
                            cats do:[:cat |    
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1235
                                cat notNil ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1236
                                    suppress := packageFilterOnInput notNil 
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1237
                                                and:[ (self class:cls protocol:cat includesMethodsInAnyPackage:packageFilterOnInput) not ].
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1238
                                    suppress ifFalse:[
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1239
                                        includedCats add:cat.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1240
8723
2d676b11e886 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8718
diff changeset
  1241
                                        variablesToHighlight notEmptyOrNil ifTrue:[
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1242
                                            (itemsWithVarRefs includes:cat) ifFalse:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1243
                                                classVarsToHighLight ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1244
                                                    doHighLight := self class:cls protocol:cat includesRefsToClassVariable:variablesToHighlight.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1245
                                                    doHighLight ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1246
                                                        doHighLightRed := self class:cls protocol:cat includesModsOfClassVariable:variablesToHighlight.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1247
                                                    ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1248
                                                ] ifFalse:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1249
                                                    doHighLight := self class:cls protocol:cat includesRefsToInstanceVariable:variablesToHighlight.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1250
                                                    doHighLight ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1251
                                                        doHighLightRed := self class:cls protocol:cat includesModsOfInstanceVariable:variablesToHighlight.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1252
                                                    ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1253
                                                ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1254
                                                doHighLight ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1255
                                                    itemsWithVarRefs add:cat.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1256
                                                    doHighLightRed ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1257
                                                        itemsWithVarMods add:cat.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1258
                                                    ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1259
                                                ]
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1260
                                            ]
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1261
                                        ].
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1262
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1263
                                        AdditionalEmptyCategoriesPerClassName size > 0 ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1264
                                            clsName := cls name.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1265
                                            emptyProtocols := AdditionalEmptyCategoriesPerClassName at:clsName ifAbsent:nil.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1266
                                            emptyProtocols size > 0 ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1267
                                                emptyProtocols remove:cat ifAbsent:nil.    
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1268
                                            ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1269
                                            emptyProtocols size == 0 ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1270
                                                AdditionalEmptyCategoriesPerClassName removeKey:clsName ifAbsent:nil
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1271
                                            ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1272
                                        ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1273
                                    ]
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1274
                                ]
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1275
                            ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1276
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1277
                            cats := cats asSet.
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1278
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1279
                            cls selectorsAndMethodsDo:[:sel :mthd |
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1280
                                |info cat|
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1281
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1282
                                (includedCats includes:(cat := mthd category)) ifTrue:[
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1283
                                    categoryBag add:cat.
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1284
                                    lazyPseudoProtocols ifFalse:[
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1285
                                        info := self methodInfoFor:mthd in:cls selector:sel lazy:lazyPseudoProtocols.
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1286
                                        info notNil ifTrue:[
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1287
                                            info isObsolete ifTrue:[ numObsolete := numObsolete + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1288
                                            info sendsSuper ifTrue:[ numSuper := numSuper + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1289
                                            info isUncommented ifTrue:[ numUncommented := numUncommented + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1290
                                            info isDocumentationMethod ifTrue:[ numDocumentation := numDocumentation + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1291
                                            info isLongMethod ifTrue:[ numLong := numLong + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1292
                                            info isExtensionMethod ifTrue:[ numExtension := numExtension + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1293
                                            info isOverride ifTrue:[ numOverride := numOverride + 1 ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1294
                                            info isRedefine ifTrue:[ numRedefine := numRedefine + 1 ].
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1295
                                            info isRedefined ifTrue:[ numRedefined := numRedefined + 1 ].
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1296
                                            info isSubclassResponsibility ifTrue:[ numSubclassResponsibility := numSubclassResponsibility + 1].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1297
                                            info isAnnotated ifTrue:[ numAnnotated := numAnnotated + 1].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1298
                                        ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1299
                                        (Timestamp now deltaFrom:startTime) > 5 seconds ifTrue:[
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1300
                                            lazyPseudoProtocols := true.
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1301
                                            "/ because we already computed for 10seconds, more and more will be found in
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1302
                                            "/ the cache, and eventually, pseudo protocols will be shown anyway
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1303
                                            masterApplication showInfo:'suppress pseudo protocols - parsing took too long'.
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1304
                                        ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1305
                                    ]
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1306
                                ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1307
                            ].
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1308
                        ]
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1309
                 ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1310
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1311
    numAll := 0.
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1312
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1313
    changeSet := ChangeSet current.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1314
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1315
    classesProcessed do:[:eachClass |
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1316
        |classPackage required|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1317
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1318
        classPackage := eachClass package.
6706
8a8ba991614c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6704
diff changeset
  1319
        eachClass methodDictionary keysAndValuesDo:[:mSelector :mthd |
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1320
            |mPackage mCategory|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1321
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1322
            mPackage := mthd package.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1323
            mCategory := mthd category.    
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1324
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1325
            #fixme.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1326
            mPackage = classPackage ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1327
                mPackage ~~ classPackage ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1328
                    mthd setPackage:(mPackage := mPackage string asSymbol).
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1329
                ]
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1330
            ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1331
            mPackage ~~ classPackage ifTrue:[
10659
4157482b811c Fix in listOfMethodCategories for methods with nil category (non-smalltalk methods)
vrany
parents: 10652
diff changeset
  1332
                (mCategory notNil and:[mPackage ~= PackageId noProjectID]) ifTrue:[
6877
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1333
                    itemsWithExtensions add:mCategory.    
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1334
6877
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1335
                    (packageFilter notNil 
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1336
                    and:[ (packageFilter includes:mPackage) not])
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1337
                    ifTrue:[
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1338
                        itemsWithSuppressedExtensions add:mCategory.    
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1339
                    ].
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1340
                ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1341
            ].
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1342
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1343
            showCoverageInformation ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1344
                mthd isInstrumented ifTrue:[
9449
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1345
                    mthd category = 'documentation' ifFalse:[
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1346
                        itemsWithInstrumentedMethods add:mCategory.
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1347
                        mthd hasBeenCalled ifTrue:[
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1348
                            itemsWithCalledMethods add:mCategory.
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1349
                            mthd haveAllBlocksBeenExecuted ifTrue:[
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1350
                                itemsWithFullyCoveredMethods add:mCategory.
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1351
                                numFullyCovered := numFullyCovered + 1.
9449
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1352
                            ] ifFalse:[
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1353
                                itemsWithPartiallyCoveredMethods add:mCategory.
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1354
                                numPartiallyCovered := numPartiallyCovered + 1.
9449
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1355
                            ].
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1356
                        ] ifFalse:[
9449
db3be2a21d55 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9445
diff changeset
  1357
                            itemsWithUncalledMethods add:mCategory.
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1358
                            numUncovered := numUncovered + 1.
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1359
                        ].
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1360
                    ].
10360
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
  1361
                ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10356
diff changeset
  1362
                    numNotInstrumented := numNotInstrumented + 1.
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1363
                ].
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1364
            ] ifFalse:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1365
                (changeSet includesChangeForClass:eachClass selector:mSelector) ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1366
                    itemsInChangeSet add:mCategory.    
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1367
                ].
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1368
                (SmallTeam notNil and:[ SmallTeam includesChangeForClass:eachClass selector:mSelector] ) ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1369
                    itemsInRemoteChangeSet add:mCategory.    
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1370
                ].
7501
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1371
            ].
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1372
        ].
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1373
        (lazyPseudoProtocols not and:[showPseudoProtocols value]) ifTrue:[
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1374
            "/ see if there is a subclassResponsibility in a superclass
9729
0d29623f7e10 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 9465
diff changeset
  1375
            required := SmalltalkCodeGeneratorTool missingRequiredProtocolFor:eachClass.
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1376
            numMissingRequired := numMissingRequired + required size.
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  1377
        ].
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1378
        numAll := numAll + (eachClass methodDictionary size)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1379
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1380
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1381
    pseudoEntryColor := self class pseudoEntryForegroundColor.
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1382
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1383
    categoryList := categoryBag asSet asOrderedCollection.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1384
    self rawProtocolList removeAll.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1385
    rawProtocolList addAll:categoryList.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1386
6698
4471601b0461 much faster update
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  1387
    emphasizedPlus := (self colorizeForDifferentPackage:' [ + ]').
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1388
    emphasisForRef := userPreferences emphasisForReadVariable.
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1389
    emphasisForMod := userPreferences emphasisForWrittenVariable.
6698
4471601b0461 much faster update
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  1390
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1391
    needsSpecialColoring :=
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1392
        (itemsInChangeSet notEmpty 
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1393
        or:[itemsInRemoteChangeSet notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1394
        or:[itemsWithExtensions notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1395
        or:[itemsWithVarRefs notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1396
        or:[itemsWithInstrumentedMethods notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1397
        or:[itemsWithCalledMethods notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1398
        or:[itemsWithUncalledMethods notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1399
        or:[itemsWithFullyCoveredMethods notEmpty
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1400
        or:[itemsWithPartiallyCoveredMethods notEmpty]]]]]]]]).
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1401
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1402
    rawProtocolList keysAndValuesDo:[:idx :cat |
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1403
        |item inChangeSet inRemoteChangeSet hasExtensions hasVarRef hasVarMod
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1404
         clr|
7501
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1405
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1406
        item := cat.
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1407
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1408
        needsSpecialColoring ifTrue:[
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1409
            inChangeSet := false.
6701
c3df9d286697 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6698
diff changeset
  1410
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1411
            showCoverageInformation ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1412
                (itemsWithInstrumentedMethods includes:cat) ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1413
                    (itemsWithCalledMethods includes:cat) ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1414
                        (itemsWithPartiallyCoveredMethods includes:cat) ifTrue:[
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1415
                            clr := (userPreferences colorForInstrumentedPartiallyCoveredCode).
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1416
                        ] ifFalse:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1417
                            (itemsWithUncalledMethods includes:cat) ifTrue:[
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1418
                                clr := (userPreferences colorForInstrumentedPartiallyCoveredCode).
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1419
                            ] ifFalse:[
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1420
                                 clr := (userPreferences colorForInstrumentedFullyCoveredCode).
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1421
                            ]                    
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1422
                        ]
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1423
                    ] ifFalse:[
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1424
                        clr := (userPreferences colorForInstrumentedNeverCalledCode).
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1425
                    ].
9452
750e55a24967 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9449
diff changeset
  1426
                    item := self colorize:cat with:(#color -> clr).
9445
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1427
                ]
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1428
            ] ifFalse:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1429
                inChangeSet := itemsInChangeSet includes:cat.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1430
                inChangeSet ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1431
                    item := self colorizeForChangedCode:cat.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1432
                ].
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1433
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1434
                inRemoteChangeSet := itemsInRemoteChangeSet includes:cat.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1435
                inRemoteChangeSet ifTrue:[
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1436
                    item := (self colorizeForChangedCodeInSmallTeam:'!! '),item.
8c1d59b7f33f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9281
diff changeset
  1437
                ].
7501
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1438
            ].
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1439
6698
4471601b0461 much faster update
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  1440
            hasVarRef := itemsWithVarRefs includes:cat.
4471601b0461 much faster update
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  1441
            hasVarRef ifTrue:[
4471601b0461 much faster update
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  1442
                hasVarMod := itemsWithVarMods includes:cat.
6701
c3df9d286697 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6698
diff changeset
  1443
                item := item asText 
10180
d765319efec9 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9729
diff changeset
  1444
                            emphasisAllAdd:(hasVarMod ifTrue:[emphasisForMod] ifFalse:[emphasisForRef]).
6701
c3df9d286697 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6698
diff changeset
  1445
            ].
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1446
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1447
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1448
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1449
        item := item , ((' (%1)' bindWith:(categoryBag occurrencesOf:cat)) 
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1450
                            colorizeAllWith:pseudoEntryColor).
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1451
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1452
        needsSpecialColoring ifTrue:[
6701
c3df9d286697 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6698
diff changeset
  1453
            hasExtensions := itemsWithExtensions includes:cat.
c3df9d286697 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6698
diff changeset
  1454
            hasExtensions ifTrue:[
c3df9d286697 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6698
diff changeset
  1455
                item := item , emphasizedPlus.
6698
4471601b0461 much faster update
Claus Gittinger <cg@exept.de>
parents: 6695
diff changeset
  1456
            ].
6877
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1457
            inChangeSet ifTrue:[
7056
14542aaca275 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6880
diff changeset
  1458
                item := item , self class markForBeingInChangeList.
6877
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1459
            ].
11861
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1460
        ].
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1461
d4f6399526ac changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 11850
diff changeset
  1462
        categoryList at:idx put:item.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1463
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1464
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1465
    classesProcessed size > 0 ifTrue:[
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1466
        "/ those are simulated - in ST/X, empty categories do not
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1467
        "/ really exist; however, during browsing, it makes sense.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1468
        AdditionalEmptyCategoriesPerClassName size > 0 ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1469
            AdditionalEmptyCategoriesPerClassName keysAndValuesDo:[:clsName :protocols |
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1470
                (classesProcessed contains:[:cls | cls name = clsName]) ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1471
                    categoryList addAll:protocols.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1472
                    rawProtocolList addAll:protocols.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1473
                ]
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1474
            ]
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1475
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1476
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1477
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1478
    self makeIndependent.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1479
    classes := classesProcessed.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1480
    leafClasses := leafClassesProcessed.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1481
    self makeDependent.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1482
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1483
    rawProtocolList sortWith:categoryList.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1484
    categoryList size == 1 ifTrue:[
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1485
        nm := categoryList first string.
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1486
        classes size == 1 ifTrue:[
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1487
            nm := classes first name , '-' , nm
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1488
        ].
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1489
        self protocolLabelHolder value:nm
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1490
    ].
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1491
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1492
    categoryList notEmpty ifTrue:[
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1493
        noAllItem value ~~ true ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1494
            |allName|
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1495
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
  1496
            countAll ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1497
                allName := self class nameListEntryForALLWithCount bindWith:numAll.
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
  1498
            ] ifFalse:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1499
                allName := nameListEntryForALL.
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
  1500
            ].
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1501
            categoryList addFirst:(allName allItalic colorizeAllWith:pseudoEntryColor).
5814
a2370251d01f *** empty log message ***
werner
parents: 5592
diff changeset
  1502
            rawProtocolList addFirst:nameListEntryForALL.
8694
47c8e3fd95dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8219
diff changeset
  1503
        ].
9042
90d6e1c9ad5b changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9039
diff changeset
  1504
    ].
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1505
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1506
    (lazyPseudoProtocols not and:[showPseudoProtocols value]) ifTrue:[
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1507
        addPseudoEntryWithColor := [:s :n :clr | 
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1508
                                n > 0 ifTrue:[
9126
9ad8ea73b635 comment/format in: #doDropContext:
Claus Gittinger <cg@exept.de>
parents: 9122
diff changeset
  1509
                                    categoryList 
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1510
                                        add:((s bindWith:n) allItalic colorizeAllWith:clr).
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1511
                                    rawProtocolList add:s.
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1512
                                ].
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1513
                           ].
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1514
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1515
        addPseudoEntry := [:s :n | addPseudoEntryWithColor value:s value:n value:pseudoEntryColor].
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  1516
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1517
        addPseudoEntry value:self class nameListEntryForAnnotated value:numAnnotated.
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1518
        addPseudoEntry value:self class nameListEntryForDocumentation value:numDocumentation.
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1519
        addPseudoEntry value:self class nameListEntryForExtensions value:numExtension.
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1520
        addPseudoEntry value:self class nameListEntryForLong value:numLong.
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1521
        addPseudoEntry value:self class nameListEntryForMustBeRedefinedInSubclass value:numSubclassResponsibility.
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1522
        addPseudoEntry value:self class nameListEntryForObsolete value:numObsolete.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1523
        addPseudoEntry value:self class nameListEntryForOverride value:numOverride.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1524
        addPseudoEntry value:self class nameListEntryForRedefine value:numRedefine.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1525
        addPseudoEntry value:self class nameListEntryForRedefined value:numRedefined.
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1526
        "/ I think red is too much of an alert color (and we get more of them as we think...)
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1527
"/        numMissingRequired > 0 ifTrue:[
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1528
"/            categoryList add:((self class nameListEntryForRequired bindWith:numMissingRequired) allItalic "colorizeAllWith:Color red").
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1529
"/            rawProtocolList add:self class nameListEntryForRequired.
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1530
"/        ].
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1531
        addPseudoEntry value:self class nameListEntryForRequired value:numMissingRequired.
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1532
        addPseudoEntry value:self class nameListEntryForSuperSend value:numSuper.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1533
        addPseudoEntry value:self class nameListEntryForUncommented value:numUncommented.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1534
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1535
        showCoverageInformation ifTrue:[                                                                              
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1536
            addPseudoEntry value:self class nameListEntryForNotInstrumented value:numNotInstrumented.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1537
            addPseudoEntryWithColor value:self class nameListEntryForUncovered value:numUncovered value:userPreferences colorForInstrumentedNeverCalledCode.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1538
            addPseudoEntryWithColor value:self class nameListEntryForPartiallyCovered value:numPartiallyCovered value:userPreferences colorForInstrumentedPartiallyCoveredCode.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1539
            addPseudoEntryWithColor value:self class nameListEntryForFullyCovered value:numFullyCovered value:userPreferences colorForInstrumentedFullyCoveredCode.
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1540
        ].
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1541
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1542
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1543
    ^ categoryList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1544
6877
59c8f9e00343 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6855
diff changeset
  1545
    "Created: / 05-02-2000 / 13:42:11 / cg"
10659
4157482b811c Fix in listOfMethodCategories for methods with nil category (non-smalltalk methods)
vrany
parents: 10652
diff changeset
  1546
    "Modified: / 31-08-2011 / 16:26:08 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10687
b10e596f7d9b changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 10679
diff changeset
  1547
    "Modified: / 08-09-2011 / 04:56:47 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1548
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1549
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1550
makeDependent
7501
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1551
    Smalltalk addDependent:self.
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1552
"/    ChangeSet addDependent:self.
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1553
c469ba228dda preps for SmallTeam
Claus Gittinger <cg@exept.de>
parents: 7398
diff changeset
  1554
    "Modified: / 10-11-2006 / 17:57:13 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1555
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1556
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1557
makeIndependent
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1558
    Smalltalk removeDependent:self.
8219
57088175dcda dont forget to make independent
fm
parents: 7501
diff changeset
  1559
"/    ChangeSet removeDependent:self.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1560
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1561
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1562
release
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1563
    super release.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1564
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1565
    filterClassVars removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1566
    methodVisibilityHolder removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1567
    noAllItem removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1568
    packageFilterOnInput removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1569
    selectedProtocolIndices removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1570
    variableFilter removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1571
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1572
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1573
updateList
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1574
    |prevClasses prevSelection newSelection newList oldList sameContents selectedProtocolsHolder rawList|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1575
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1576
    selectedProtocolsHolder := self selectedProtocols.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1577
    
10297
69e003b25399 comment/format in: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 10250
diff changeset
  1578
    prevClasses := classes isNil ifTrue:[ #() ] ifFalse:[ classes copy ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1579
    oldList := self protocolList value copy.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1580
    newList := self listOfMethodCategories.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1581
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1582
    "/ oldListSize := self browserNameList size.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1583
    "/ newListSize := newList size.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1584
    self selectedProtocolIndices removeDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1585
    sameContents := self updateListFor:newList.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1586
    self selectedProtocolIndices addDependent:self.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1587
    sameContents ifFalse:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1588
        prevSelection := lastSelectedProtocols ? (selectedProtocolsHolder value) ? #().
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1589
        "/ prevSelection := selectedProtocolsHolder value ? lastSelectedProtocols ? #().
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1590
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1591
        rawList := self rawProtocolList value.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1592
        newSelection := prevSelection select:[:item | rawList includes:item string].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1593
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1594
        newSelection size > 0 ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1595
            "/ force change (for dependents)
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1596
"/                selectedProtocolsHolder value:nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1597
"/                selectedProtocolsHolder value:newSelection.
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1598
            selectedProtocolsHolder setValue:newSelection.
11462
c4aea6f0722e changed: #updateList
Claus Gittinger <cg@exept.de>
parents: 10720
diff changeset
  1599
            selectedProtocolsHolder removeDependent:self.    
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1600
            selectedProtocolsHolder changed:#value.
11462
c4aea6f0722e changed: #updateList
Claus Gittinger <cg@exept.de>
parents: 10720
diff changeset
  1601
            selectedProtocolsHolder addDependent:self.    
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1602
        ] ifFalse:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1603
            prevSelection := selectedProtocolsHolder value.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1604
            selectedProtocolsHolder value:nil.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1605
        ].
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1606
        (prevSelection size > 0 or:[newSelection size > 0]) ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1607
            self enqueueDelayedUpdateOutputGenerator.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1608
            "/ self updateOutputGenerator.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1609
        ].
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1610
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1611
"/        prevSelection notNil ifTrue:[
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1612
"/            lastSelectedProtocols := prevSelection.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1613
"/        ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1614
    ] ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1615
        "/ same list - but classes might have changed
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1616
        "/ that is the case, if the class selection has been changed,
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1617
        "/ to another class which has the same categories.
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1618
        (prevClasses size ~= classes size 
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1619
        or:[prevClasses asOrderedCollection ~= (classes ? #()) asOrderedCollection ]) ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1620
            (newList size > 0 or:[oldList size > 0]) ifTrue:[
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1621
                self updateOutputGenerator
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1622
            ]
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1623
        ] ifFalse:[
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1624
"/                self protocolList value:newList.
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1625
        ]
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1626
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1627
    listValid := true.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1628
10297
69e003b25399 comment/format in: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 10250
diff changeset
  1629
    "Created: / 05-02-2000 / 13:42:11 / cg"
11462
c4aea6f0722e changed: #updateList
Claus Gittinger <cg@exept.de>
parents: 10720
diff changeset
  1630
    "Modified: / 23-03-2012 / 15:53:41 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1631
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1632
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1633
!MethodCategoryList methodsFor:'private-info'!
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1634
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1635
methodInfoFor:aMethod in:mclass selector:selector
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1636
    ^ self methodInfoFor:aMethod in:mclass selector:selector lazy:false
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1637
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1638
    "Modified: / 08-08-2011 / 18:21:03 / cg"
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1639
!
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1640
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1641
methodInfoFor:aMethod in:mclass selector:selector lazy:lazy
10652
fb29722569ac changed: #methodInfoFor:in:selector:lazy:
Claus Gittinger <cg@exept.de>
parents: 10585
diff changeset
  1642
    |info isDocumentationMethod isVersionMethod def methodsPackage|
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1643
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1644
    "/ the first at:ifAbsent: is aktually not needed - it is here to
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1645
    "/ reduce the average blocking time, and to allow for debugging the info generating
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1646
    "/ code without deadlock
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1647
    MethodInfoCacheAccessLock critical:[
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1648
        info := MethodInfoCache at:aMethod "(mclass name,'>>',selector)" ifAbsent:nil.
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1649
    ].
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1650
    info isNil ifTrue:[
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1651
        lazy ifTrue:[
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1652
            "/ TODO: start a background thread to compute the stuff below,
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1653
            "/ notify me to update the list, when all the lazy info is avail...
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1654
        ] ifFalse:[
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1655
            true "aMethod mclass language isSmalltalk" ifTrue:[
10652
fb29722569ac changed: #methodInfoFor:in:selector:lazy:
Claus Gittinger <cg@exept.de>
parents: 10585
diff changeset
  1656
                methodsPackage := aMethod package.
fb29722569ac changed: #methodInfoFor:in:selector:lazy:
Claus Gittinger <cg@exept.de>
parents: 10585
diff changeset
  1657
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1658
                isVersionMethod := aMethod isVersionMethod.
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1659
                isDocumentationMethod := isVersionMethod not and:[aMethod isDocumentationMethod].
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1660
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1661
                info := CachedMethodInfo new.
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1662
                info isObsolete:(aMethod isObsolete). "/ (aMethod isObsolete).
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1663
                info sendsSuper:(aMethod superMessages notEmptyOrNil). "/ (aMethod superMessages notEmptyOrNil).
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1664
                info isUncommented:(self methodIsMarkedAsUncommented:aMethod). "/ (self methodIsMarkedAsUncommented:aMethod).
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1665
                info isDocumentationMethod:isDocumentationMethod.
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1666
                info isLongMethod:(self methodIsMarkedAsLong:aMethod). "/ (self methodIsMarkedAsLong:aMethod).
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1667
10652
fb29722569ac changed: #methodInfoFor:in:selector:lazy:
Claus Gittinger <cg@exept.de>
parents: 10585
diff changeset
  1668
                methodsPackage ~= mclass package ifTrue:[
fb29722569ac changed: #methodInfoFor:in:selector:lazy:
Claus Gittinger <cg@exept.de>
parents: 10585
diff changeset
  1669
                    methodsPackage ~= #'__NoProject__' ifTrue:[
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1670
                        info isExtensionMethod:true.
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1671
                        info isOverride:(
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1672
                                          ((def := methodsPackage asPackageId projectDefinitionClass) notNil
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1673
                                          and:[ (def methodOverwrittenBy:aMethod ) notNil ]) 
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1674
                                        )
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1675
                    ]
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1676
                ] ifFalse:[
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1677
                    info isExtensionMethod:false.
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1678
                    info isOverride:false.
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1679
                ].
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1680
                info isRedefine:(
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1681
                                    ( isVersionMethod not
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1682
                                    and:[ isDocumentationMethod not
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1683
                                    and:[ mclass superclass notNil
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1684
                                    and:[ (mclass superclass whichClassIncludesSelector:selector ) notNil ]]]) 
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1685
                                ).
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1686
"/ too expensive - makes browser slow
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1687
"/                info isRedefined:(
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1688
"/                                    ( isVersionMethod not
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1689
"/                                    and:[ isDocumentationMethod not
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1690
"/                                    and:[ mclass allSubclasses contains:[:cls | cls includesSelector:selector ]]]) 
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1691
"/                                ).
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1692
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1693
                info isSubclassResponsibility:( aMethod sends:#subclassResponsibility or:#subclassResponsibility: ).
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1694
                info isAnnotated:(aMethod hasAnnotation).
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1695
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1696
                MethodInfoCacheAccessLock critical:[
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1697
                    MethodInfoCache at:aMethod "(mclass name,'>>',selector)" put:info
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1698
                ].
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1699
            ].
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1700
        ].
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1701
    ].
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1702
    ^ info
10548
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1703
0797847f51de for now: skip pseudo categories, if too slow.
Claus Gittinger <cg@exept.de>
parents: 10368
diff changeset
  1704
    "Created: / 08-08-2011 / 18:18:14 / cg"
8990
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1705
!
437c2f8eb9a5 changed: #methodInfoFor:in:selector:
Claus Gittinger <cg@exept.de>
parents: 8989
diff changeset
  1706
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1707
methodIsMarkedAsLong:aMethod
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1708
    "if true, it will be also categorized under the pseudo category 'long'"
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1709
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1710
    |src ast linesWithCode visitor|
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1711
9122
a47af769e281 fixed: #methodIsMarkedAsLong:
Michael Beyl <mb@exept.de>
parents: 9086
diff changeset
  1712
    src := aMethod source ? ''.
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1713
    src asCollectionOfLines size < UserPreferences current numberOfLinesForLongMethod "~~30" ifTrue:[^ false].
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1714
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1715
    "/ ok, it is long;
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1716
    "/ but do not blame the user for writing documentation (dont count comments),
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1717
    "/ or using literal arrays
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1718
    RBParser notNil ifTrue:[
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1719
        ast := RBParser parseMethod:src.
8992
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1720
        ast notNil ifTrue:[
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1721
            visitor := RBProgramNodeVisitor new.
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1722
            visitor pluggableNodeAction:
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1723
                [:eachNode |
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1724
                    |lno|
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1725
                    lno := eachNode lineNumber.
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1726
                    lno notNil ifTrue:[ linesWithCode add:lno ].
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1727
                ].
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1728
8992
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1729
            linesWithCode := Set new.
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1730
            ast acceptVisitor:visitor.
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1731
            linesWithCode size < UserPreferences current numberOfLinesForLongMethod "~~30" ifTrue:[^ false].
d7a42a5b9be4 changed: #methodIsMarkedAsLong:
fm
parents: 8990
diff changeset
  1732
        ].
8989
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1733
    ].
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1734
    ^ true.
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1735
!
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1736
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1737
methodIsMarkedAsUncommented:aMethod
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1738
    "if true, it will be also categorized under the pseudo category 'undocumented'"
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1739
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1740
    ^ aMethod comment isEmptyOrNil 
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1741
    and:[aMethod isVersionMethod not]
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1742
! !
b0d23a8ca15b dont count comments when judging a method as being \"long\"
Claus Gittinger <cg@exept.de>
parents: 8982
diff changeset
  1743
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1744
!MethodCategoryList methodsFor:'special'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1745
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1746
addAdditionalProtocol:aProtocol forClass:aClass
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1747
    "those are simulated - in ST/X, empty categories do not really exist; 
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1748
     (because the category is an attribute of the method)
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1749
     However, during browsing, it makes sense. Therefore, empty categories are
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1750
     remembered here"
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1751
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1752
    |categories|
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1753
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1754
    AdditionalEmptyCategoriesPerClassName isNil ifTrue:[
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1755
        AdditionalEmptyCategoriesPerClassName := Dictionary new.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1756
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1757
    categories := AdditionalEmptyCategoriesPerClassName at:aClass name ifAbsent:nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1758
    categories isNil ifTrue:[
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1759
        categories := Set new.
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1760
        AdditionalEmptyCategoriesPerClassName at:aClass name put:categories.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1761
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1762
    categories add:aProtocol.
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1763
    aClass changed:#organization.                                                       "/ not really ... to force update
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1764
    Smalltalk changed:#methodCategoryAdded with:(Array with:aClass with:aProtocol).     "/ not really ... to force update
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1765
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1766
    "Modified (comment): / 01-08-2012 / 17:30:36 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1767
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1768
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1769
additionalProtocolForClass:aClass
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1770
    "those are simulated - in ST/X, empty categories do not really exist; 
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1771
     (because the category is an attribute of the method)
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1772
     However, during browsing, it makes sense. Therefore, empty categories are
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1773
     remembered here"
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1774
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1775
    AdditionalEmptyCategoriesPerClassName isNil ifTrue:[ ^ #() ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1776
    ^ AdditionalEmptyCategoriesPerClassName at:aClass name ifAbsent:[ #() ].
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1777
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1778
    "Modified (comment): / 01-08-2012 / 17:29:16 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1779
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1780
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1781
clearLastSelectedProtocol
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1782
    lastSelectedProtocols := nil
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1783
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1784
6342
698b45d51014 new method-category initial offer
Claus Gittinger <cg@exept.de>
parents: 5950
diff changeset
  1785
lastSelectedProtocols
698b45d51014 new method-category initial offer
Claus Gittinger <cg@exept.de>
parents: 5950
diff changeset
  1786
    ^ lastSelectedProtocols
698b45d51014 new method-category initial offer
Claus Gittinger <cg@exept.de>
parents: 5950
diff changeset
  1787
!
698b45d51014 new method-category initial offer
Claus Gittinger <cg@exept.de>
parents: 5950
diff changeset
  1788
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1789
removeAdditionalProtocol:aListOfProtocols forClass:aClass
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1790
    "those are simulated - in ST/X, empty categories do not really exist; 
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1791
     (because the category is an attribute of the method)
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1792
     However, during browsing, it makes sense. Therefore, empty categories are
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1793
     remembered here"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1794
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1795
    |categories|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1796
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1797
    AdditionalEmptyCategoriesPerClassName isNil ifTrue:[^ self].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1798
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1799
    categories := AdditionalEmptyCategoriesPerClassName at:aClass name ifAbsent:nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1800
    categories isNil ifTrue:[^ self].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1801
    categories removeAllFoundIn:aListOfProtocols.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1802
    categories isEmpty ifTrue:[
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1803
        AdditionalEmptyCategoriesPerClassName removeKey:aClass name.
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1804
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1805
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1806
    aClass changed:#organization.                      "/ not really ... to force update
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1807
    Smalltalk changed:#methodCategoriesRemoved with:(Array with:aClass with:aListOfProtocols).     "/ not really ... to force update
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1808
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1809
    "Modified (comment): / 01-08-2012 / 17:29:59 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1810
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1811
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1812
removeAllAdditionalProtocol
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1813
    "those are simulated - in ST/X, empty categories do not really exist; 
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1814
     (because the category is an attribute of the method)
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1815
     However, during browsing, it makes sense. Therefore, empty categories are
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1816
     remembered here"
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1817
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1818
    AdditionalEmptyCategoriesPerClassName := nil
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1819
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1820
    "Modified (comment): / 01-08-2012 / 17:30:05 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1821
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1822
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1823
removeAllAdditionalProtocolForClass:aClass
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1824
    "those are simulated - in ST/X, empty categories do not really exist; 
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1825
     (because the category is an attribute of the method)
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1826
     However, during browsing, it makes sense. Therefore, empty categories are
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1827
     remembered here"
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1828
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1829
    AdditionalEmptyCategoriesPerClassName notNil ifTrue:[
9128
26fb27aa3d40 changed: #listOfMethodCategories
Claus Gittinger <cg@exept.de>
parents: 9126
diff changeset
  1830
        AdditionalEmptyCategoriesPerClassName removeKey:aClass name ifAbsent:nil
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1831
    ].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1832
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1833
    "Modified (comment): / 01-08-2012 / 17:30:10 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1834
!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1835
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1836
renameAdditionalProtocol:oldName to:newName forClass:aClass
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1837
    "those are simulated - in ST/X, empty categories do not really exist; 
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1838
     (because the category is an attribute of the method)
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1839
     However, during browsing, it makes sense. Therefore, empty categories are
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1840
     remembered here"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1841
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1842
    |categories|
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1843
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1844
    AdditionalEmptyCategoriesPerClassName isNil ifTrue:[^ self].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1845
    categories := AdditionalEmptyCategoriesPerClassName at:aClass name ifAbsent:nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1846
    categories isNil ifTrue:[^ self].
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1847
    categories remove:oldName ifAbsent:nil.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1848
    categories add:newName.
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1849
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1850
    aClass changed:#organization.                      "/ not really ... to force update
6664
50eb2e92aaed changed change-update aspect when changing some method category
Claus Gittinger <cg@exept.de>
parents: 6492
diff changeset
  1851
    Smalltalk changed:#methodCategoryRenamed with:(Array with:aClass with:oldName with:newName).     "/ not really ... to force update
11717
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1852
eb28ca5f1a4c comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11560
diff changeset
  1853
    "Modified (comment): / 01-08-2012 / 17:30:16 / cg"
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1854
! !
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1855
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1856
!MethodCategoryList::CachedMethodInfo class methodsFor:'initialization'!
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1857
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1858
initialize
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1859
    FlagObsolete := 1.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1860
    FlagSendsSuper := 2.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1861
    FlagIsUncommented := 4.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1862
    FlagIsDocumentationMethod := 8.
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1863
    FlagIsLongMethod := 16.
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1864
    FlagIsExtension := 32.
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1865
    FlagIsOverride := 64.
8964
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1866
    FlagIsRedefine := 128.
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1867
    FlagIsSubclassResponsibility := 128.
10250
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1868
    FlagIsTest := 256.
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1869
    FlagIsAnnotated := 512.
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1870
    FlagIsRedefined := 1024.
10250
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1871
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1872
    "Modified: / 08-03-2010 / 18:33:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1873
    "Modified: / 07-09-2011 / 10:04:30 / cg"
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1874
! !
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1875
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1876
!MethodCategoryList::CachedMethodInfo class methodsFor:'instance creation'!
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1877
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1878
new
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1879
    ^ self basicNew flags:0.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1880
! !
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1881
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1882
!MethodCategoryList::CachedMethodInfo methodsFor:'accessing'!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1883
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1884
flags:something
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1885
    flags := something.
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1886
!
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1887
10679
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1888
isAnnotated
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1889
    ^ (flags ? 0) bitTest: FlagIsAnnotated
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1890
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1891
    "Created: / 07-09-2011 / 10:04:56 / cg"
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1892
!
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1893
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1894
isAnnotated:aBoolean
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1895
    flags := aBoolean
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1896
                ifTrue:[ flags bitOr: FlagIsAnnotated ]
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1897
                ifFalse:[ flags bitClear: FlagIsAnnotated]
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1898
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1899
    "Created: / 07-09-2011 / 10:04:48 / cg"
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1900
!
b5345fb2b162 changed:
Claus Gittinger <cg@exept.de>
parents: 10659
diff changeset
  1901
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1902
isDocumentationMethod
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1903
    ^ (flags ? 0) bitTest: FlagIsDocumentationMethod
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1904
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1905
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1906
isDocumentationMethod:aBoolean
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1907
    flags := aBoolean
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1908
                ifTrue:[ flags bitOr: FlagIsDocumentationMethod ]
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1909
                ifFalse:[ flags bitClear: FlagIsDocumentationMethod]
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1910
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1911
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1912
isExtensionMethod
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1913
    ^ (flags ? 0) bitTest: FlagIsExtension
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1914
!
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1915
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1916
isExtensionMethod:aBoolean
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1917
    flags := aBoolean
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1918
                ifTrue:[ flags bitOr: FlagIsExtension ]
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1919
                ifFalse:[ flags bitClear: FlagIsExtension]
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1920
!
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1921
8867
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1922
isLongMethod
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1923
    ^ (flags ? 0) bitTest: FlagIsLongMethod
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1924
!
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1925
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1926
isLongMethod:aBoolean
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1927
    flags := aBoolean
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1928
                ifTrue:[ flags bitOr: FlagIsLongMethod ]
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1929
                ifFalse:[ flags bitClear: FlagIsLongMethod]
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1930
!
c926be235b4b changed:
Claus Gittinger <cg@exept.de>
parents: 8860
diff changeset
  1931
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1932
isObsolete
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1933
    ^ (flags ? 0) bitTest: FlagObsolete
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1934
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1935
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1936
isObsolete:aBoolean
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1937
    flags := aBoolean
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1938
                ifTrue:[ flags bitOr: FlagObsolete ]
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1939
                ifFalse:[ flags bitClear: FlagObsolete]
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1940
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1941
8931
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1942
isOverride
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1943
    ^ (flags ? 0) bitTest: FlagIsOverride
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1944
!
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1945
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1946
isOverride:aBoolean
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1947
    flags := aBoolean
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1948
                ifTrue:[ flags bitOr: FlagIsOverride ]
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1949
                ifFalse:[ flags bitClear: FlagIsOverride]
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1950
!
8c8ce24dadb2 changed:
Claus Gittinger <cg@exept.de>
parents: 8867
diff changeset
  1951
8964
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1952
isRedefine
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1953
    ^ (flags ? 0) bitTest: FlagIsRedefine
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1954
!
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1955
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1956
isRedefine:aBoolean
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1957
    flags := aBoolean
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1958
                ifTrue:[ flags bitOr: FlagIsRedefine ]
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1959
                ifFalse:[ flags bitClear: FlagIsRedefine]
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1960
!
c10e1d1fd7a7 changed:
Claus Gittinger <cg@exept.de>
parents: 8961
diff changeset
  1961
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1962
isRedefined
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1963
    ^ (flags ? 0) bitTest: FlagIsRedefined
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1964
!
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1965
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1966
isRedefined:aBoolean
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1967
    flags := aBoolean
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1968
                ifTrue:[ flags bitOr: FlagIsRedefined ]
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1969
                ifFalse:[ flags bitClear: FlagIsRedefined]
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1970
!
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  1971
9086
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1972
isSubclassResponsibility
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1973
    ^ (flags ? 0) bitTest: FlagIsSubclassResponsibility
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1974
!
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1975
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1976
isSubclassResponsibility:aBoolean
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1977
    flags := aBoolean
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1978
                ifTrue:[ flags bitOr: FlagIsSubclassResponsibility ]
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1979
                ifFalse:[ flags bitClear: FlagIsSubclassResponsibility]
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1980
!
7b52c338df83 changed:
Claus Gittinger <cg@exept.de>
parents: 9083
diff changeset
  1981
10250
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1982
isTest
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1983
    ^ (flags ? 0) bitTest: FlagIsTest
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1984
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1985
    "Created: / 08-03-2010 / 18:41:54 / Jan Vrany <jan.vrany@fit.cvut.cz>"
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1986
!
28480979852b Merged with JV's branch
vrany
parents: 10231
diff changeset
  1987
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1988
isUncommented
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1989
    ^ (flags ? 0) bitTest: FlagIsUncommented
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1990
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1991
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1992
isUncommented:aBoolean 
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1993
    flags := aBoolean
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1994
                ifTrue:[ flags bitOr: FlagIsUncommented ]
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1995
                ifFalse:[ flags bitClear: FlagIsUncommented]
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1996
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1997
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  1998
sendsSuper
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  1999
    ^ (flags ? 0) bitTest: FlagSendsSuper
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  2000
!
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  2001
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  2002
sendsSuper:aBoolean
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  2003
    flags := aBoolean
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  2004
                ifTrue:[ flags bitOr: FlagSendsSuper ]
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  2005
                ifFalse:[ flags bitClear: FlagSendsSuper]
8781
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  2006
! !
385e3f19694a cache the methodInfo - parsing for isUncommented/sendsSuper etc. is
Claus Gittinger <cg@exept.de>
parents: 8742
diff changeset
  2007
9043
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2008
!MethodCategoryList::MissingMethod class methodsFor:'instance creation'!
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2009
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2010
mclass:aClass selector:aSelector
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2011
    ^ self new mclass:aClass selector:aSelector
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2012
! !
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2013
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2014
!MethodCategoryList::MissingMethod methodsFor:'accessing'!
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2015
9043
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2016
mclass
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2017
    ^ mclass
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2018
!
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2019
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2020
mclass:aClass
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2021
    mclass := aClass
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2022
!
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2023
9043
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2024
mclass:aClass selector:aSelector
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2025
    mclass := aClass.
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2026
    selector := aSelector.
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2027
!
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2028
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2029
selector
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2030
    ^ selector
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2031
!
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2032
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2033
selector:something
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2034
    selector := something.
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2035
!
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2036
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2037
source
9729
0d29623f7e10 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 9465
diff changeset
  2038
    ^ (SmalltalkCodeGeneratorTool basicNew
9043
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2039
        codeFor_shouldImplementFor:selector inClass:mclass) 
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2040
            colorizeAllWith:Color red
9729
0d29623f7e10 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 9465
diff changeset
  2041
0d29623f7e10 CodeGeneratorTool->SmalltalkCodeGeneratorTool
Claus Gittinger <cg@exept.de>
parents: 9465
diff changeset
  2042
    "Modified: / 31-01-2011 / 18:29:17 / cg"
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2043
! !
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2044
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2045
!MethodCategoryList::MissingMethod methodsFor:'printing & storing'!
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2046
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2047
printStringForBrowserWithSelector:selector inClass:aClass
9043
1948809d220d changed: #makeGenerator
Claus Gittinger <cg@exept.de>
parents: 9042
diff changeset
  2048
    ^ (selector,' (** missing required **)') colorizeAllWith:Color red
9039
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2049
! !
c7c93f434394 required missing protocol display
Claus Gittinger <cg@exept.de>
parents: 8992
diff changeset
  2050
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2051
!MethodCategoryList class methodsFor:'documentation'!
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2052
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  2053
version
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  2054
    ^ '$Header: /cvs/stx/stx/libtool/Tools_MethodCategoryList.st,v 1.83 2012-10-20 13:49:14 cg Exp $'
10356
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  2055
!
19c1203f85ca more coverage info
Claus Gittinger <cg@exept.de>
parents: 10348
diff changeset
  2056
8848
1bc3db6d2e50 changed: #methodInfoFor:
Claus Gittinger <cg@exept.de>
parents: 8785
diff changeset
  2057
version_CVS
11865
8f5b3656de91 changed:
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  2058
    ^ '$Header: /cvs/stx/stx/libtool/Tools_MethodCategoryList.st,v 1.83 2012-10-20 13:49:14 cg Exp $'
5591
273637686948 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  2059
! !
8860
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  2060
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  2061
MethodCategoryList initialize!
d8ce6a00a43f use a global methodInfoCache
Claus Gittinger <cg@exept.de>
parents: 8848
diff changeset
  2062
MethodCategoryList::CachedMethodInfo initialize!