Tools__MethodCategoryCache.st
author Claus Gittinger <cg@exept.de>
Wed, 05 Jun 2019 14:16:59 +0200
changeset 18805 f6df57c6dbfb
parent 18776 231e558179dc
permissions -rw-r--r--
#BUGFIX by cg class: AbstractFileBrowser changed: #currentFileNameHolder endless loop if file not present.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18776
231e558179dc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17563
diff changeset
     1
"{ Encoding: utf8 }"
231e558179dc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17563
diff changeset
     2
7926
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
     3
"
10034
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
     4
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
     5
 Copyright (c) 2009-2010 eXept Software AG
7926
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
     6
10034
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
     7
 Permission is hereby granted, free of charge, to any person
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
     8
 obtaining a copy of this software and associated documentation
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
     9
 files (the 'Software'), to deal in the Software without
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    10
 restriction, including without limitation the rights to use,
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    11
 copy, modify, merge, publish, distribute, sublicense, and/or sell
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    12
 copies of the Software, and to permit persons to whom the
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    13
 Software is furnished to do so, subject to the following
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    14
 conditions:
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    15
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    16
 The above copyright notice and this permission notice shall be
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    17
 included in all copies or substantial portions of the Software.
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    18
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    19
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    20
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    21
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    22
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    23
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    24
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    25
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    26
 OTHER DEALINGS IN THE SOFTWARE.
7926
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    27
"
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
"{ Package: 'stx:libtool' }"
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
"{ NameSpace: Tools }"
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
Object subclass:#MethodCategoryCache
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
	instanceVariableNames:'cachedMethodCategories lock'
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
	classVariableNames:'TheOneAndOnlyCache'
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
	poolDictionaries:''
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
	category:'Interface-Browsers-New'
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
7926
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    39
!MethodCategoryCache class methodsFor:'documentation'!
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    40
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    41
copyright
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    42
"
10034
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    43
 Copyright (c) 2007-2010 Jan Vrany, SWING Research Group, Czech Technical University in Prague
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    44
 Copyright (c) 2009-2010 eXept Software AG
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    45
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    46
 Permission is hereby granted, free of charge, to any person
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    47
 obtaining a copy of this software and associated documentation
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    48
 files (the 'Software'), to deal in the Software without
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    49
 restriction, including without limitation the rights to use,
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    50
 copy, modify, merge, publish, distribute, sublicense, and/or sell
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    51
 copies of the Software, and to permit persons to whom the
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    52
 Software is furnished to do so, subject to the following
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    53
 conditions:
7926
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    54
10034
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    55
 The above copyright notice and this permission notice shall be
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    56
 included in all copies or substantial portions of the Software.
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    57
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    58
 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    59
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    60
 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    61
 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    62
 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    63
 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    64
 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
    65
 OTHER DEALINGS IN THE SOFTWARE.
7926
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    66
"
4f88f615ad7f copyright
Claus Gittinger <cg@exept.de>
parents: 6660
diff changeset
    67
! !
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!MethodCategoryCache class methodsFor:'instance creation'!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
new
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    TheOneAndOnlyCache isNil ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
        TheOneAndOnlyCache := self basicNew initialize.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
    ^ TheOneAndOnlyCache
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
! !
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
!MethodCategoryCache methodsFor:'accessing'!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
allMethodCategories
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
    cachedMethodCategories isNil ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
        self updateCachedMethodCategories
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
    ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
    ^ cachedMethodCategories
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
updateCachedMethodCategories
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    lock critical:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
        cachedMethodCategories := Set new.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
        Smalltalk allBehaviorsDo:[:eachClass |
17563
db396151b268 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 10034
diff changeset
    91
            cachedMethodCategories addAll:eachClass methodCategories 
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
    ].
17563
db396151b268 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 10034
diff changeset
    94
db396151b268 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 10034
diff changeset
    95
    "Modified: / 05-07-2017 / 09:31:55 / cg"
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
! !
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
!MethodCategoryCache methodsFor:'change & update'!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
update:something with:aParameter from:changedObject
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
    |removed|
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
    changedObject == Smalltalk ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
        something == #methodInClassRemoved ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
            cachedMethodCategories := nil.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
        (something == #classOrganization) ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
            cachedMethodCategories := nil.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
        (something == #methodCategoryAdded) ifTrue:[
7991
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   113
            cachedMethodCategories notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   114
                cachedMethodCategories add:(aParameter second).
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   115
            ].
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
        (something == #methodCategoryRemoved) ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
            cachedMethodCategories := nil.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
        (something == #methodCategoriesRemoved) ifTrue:[
7991
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   123
            cachedMethodCategories := nil.
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   124
"/            removed := aParameter second asSet.
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   125
"/            Smalltalk allMethodsDo:[:m |
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   126
"/                |mCat|
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   127
"/                mCat := m category.
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   128
"/                (removed includes:mCat) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   129
"/                    removed remove:mCat.
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   130
"/                    removed isEmpty ifTrue:[^ self ].
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   131
"/                ].
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   132
"/            ].
Claus Gittinger <cg@exept.de>
parents: 7926
diff changeset
   133
"/            cachedMethodCategories removeAll:removed.
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
        (something == #methodCategoryRenamed) ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
            cachedMethodCategories := nil.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
        something == #methodInClass ifTrue:[
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
            ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
        ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
        ^ self.
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
    ].
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
    super update:something with:aParameter from:changedObject
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
! !
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
!MethodCategoryCache methodsFor:'initialization'!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
initialize
18776
231e558179dc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17563
diff changeset
   151
    lock := Semaphore forMutualExclusion name:'MethodCategoryCache accessLock'.
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
    Smalltalk addDependent:self.
18776
231e558179dc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17563
diff changeset
   153
231e558179dc #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17563
diff changeset
   154
    "Modified: / 27-05-2019 / 17:32:26 / Claus Gittinger"
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
! !
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
!MethodCategoryCache class methodsFor:'documentation'!
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
10034
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
   159
version_CVS
17563
db396151b268 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 10034
diff changeset
   160
    ^ '$Header$'
10034
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
   161
!
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
   162
04af374bf48f changed: #copyright
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
   163
version_SVN
17563
db396151b268 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 10034
diff changeset
   164
    ^ '$Id$'
6660
9510b89eed9d initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
! !
17563
db396151b268 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 10034
diff changeset
   166