MethodCategoryChange.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 31 May 2018 10:52:50 +0100
branchjv
changeset 4330 998eb03f0736
parent 3987 738fa61cb840
permissions -rw-r--r--
Copyright updates
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25
claus
parents: 15
diff changeset
     1
"
claus
parents: 15
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
4330
998eb03f0736 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3987
diff changeset
     3
 COPYRIGHT (c) 2015 Jan Vrany
25
claus
parents: 15
diff changeset
     4
	       All Rights Reserved
claus
parents: 15
diff changeset
     5
claus
parents: 15
diff changeset
     6
 This software is furnished under a license and may be used
claus
parents: 15
diff changeset
     7
 only in accordance with the terms of that license and with the
claus
parents: 15
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
claus
parents: 15
diff changeset
     9
 be provided or otherwise made available to, or used by, any
claus
parents: 15
diff changeset
    10
 other person.  No title to or ownership of the software is
claus
parents: 15
diff changeset
    11
 hereby transferred.
claus
parents: 15
diff changeset
    12
"
957
54dade11e57f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
    13
"{ Package: 'stx:libbasic3' }"
54dade11e57f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
    14
3984
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    15
"{ NameSpace: Smalltalk }"
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    16
15
639ae882da27 Initial revision
claus
parents:
diff changeset
    17
MethodChange subclass:#MethodCategoryChange
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    18
	instanceVariableNames:'origin'
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    19
	classVariableNames:''
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    20
	poolDictionaries:''
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    21
	category:'System-Changes'
15
639ae882da27 Initial revision
claus
parents:
diff changeset
    22
!
639ae882da27 Initial revision
claus
parents:
diff changeset
    23
25
claus
parents: 15
diff changeset
    24
!MethodCategoryChange class methodsFor:'documentation'!
claus
parents: 15
diff changeset
    25
claus
parents: 15
diff changeset
    26
copyright
claus
parents: 15
diff changeset
    27
"
claus
parents: 15
diff changeset
    28
 COPYRIGHT (c) 1993 by Claus Gittinger
4330
998eb03f0736 Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3987
diff changeset
    29
 COPYRIGHT (c) 2015 Jan Vrany
25
claus
parents: 15
diff changeset
    30
	       All Rights Reserved
claus
parents: 15
diff changeset
    31
claus
parents: 15
diff changeset
    32
 This software is furnished under a license and may be used
claus
parents: 15
diff changeset
    33
 only in accordance with the terms of that license and with the
claus
parents: 15
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
claus
parents: 15
diff changeset
    35
 be provided or otherwise made available to, or used by, any
claus
parents: 15
diff changeset
    36
 other person.  No title to or ownership of the software is
claus
parents: 15
diff changeset
    37
 hereby transferred.
claus
parents: 15
diff changeset
    38
"
claus
parents: 15
diff changeset
    39
!
claus
parents: 15
diff changeset
    40
45
claus
parents: 39
diff changeset
    41
documentation
claus
parents: 39
diff changeset
    42
"
claus
parents: 39
diff changeset
    43
    instances represent method-category changes (as done in the browser). 
claus
parents: 39
diff changeset
    44
    They are typically held in a ChangeSet.
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    45
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    46
    Change origin.
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    47
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    48
    When a changeset diff is generated, two MethodChanges that 
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    49
    represent the same method (code is the same) might differ only in
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    50
    category/ Such changes are transformed to MethodCategoruChanges.
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    51
    In that case, origin keeps the reference to original MethodChange.
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    52
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    53
    [author:]
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    54
        Claus Gittinger
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    55
        Jan Vrany
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    56
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    57
    [instance variables:]
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    58
        origin      <MethodChange>  Change that cause this category
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    59
                                    change to be created. See comment.
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    60
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    61
45
claus
parents: 39
diff changeset
    62
"
25
claus
parents: 15
diff changeset
    63
! !
claus
parents: 15
diff changeset
    64
3984
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    65
!MethodCategoryChange class methodsFor:'instance creation'!
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    66
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    67
class:cls selector:sel category:cat 
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    68
    ^ self basicNew class:cls selector:sel category:cat
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    69
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    70
3986
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
    71
!
3984
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
    72
3986
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
    73
className:clsName selector:sel category:cat 
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
    74
    ^ self basicNew className:clsName selector:sel category:cat
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    75
3986
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
    76
    "Created: / 12-11-2006 / 15:54:25 / cg"
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    77
! !
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
    78
15
639ae882da27 Initial revision
claus
parents:
diff changeset
    79
!MethodCategoryChange methodsFor:'accessing'!
639ae882da27 Initial revision
claus
parents:
diff changeset
    80
639ae882da27 Initial revision
claus
parents:
diff changeset
    81
class:cls selector:sel category:cat
1902
20db5f942dbd changed #class:selector:category:
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    82
    self className:cls name selector:sel category:cat
15
639ae882da27 Initial revision
claus
parents:
diff changeset
    83
1902
20db5f942dbd changed #class:selector:category:
Claus Gittinger <cg@exept.de>
parents: 1846
diff changeset
    84
    "Modified: / 12-11-2006 / 15:55:11 / cg"
85
c354e2f81394 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    85
!
c354e2f81394 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    86
654
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    87
className:clsName selector:sel category:cat
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    88
    className := clsName.
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    89
    selector := sel.
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
    90
    methodCategory := cat
654
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    91
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    92
    "Created: / 16.2.1998 / 14:14:16 / cg"
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    93
!
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    94
3913
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
    95
deltaDetail
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
    96
    "Returns a delta to the current state as a ChangeDelta object"
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
    97
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
    98
    | mth|
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
    99
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   100
    mth := self changeMethod.
3914
cd8de87107d3 Oops, fixed MethodCategoryChange>>deltaDetail: care for non-existent method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3913
diff changeset
   101
    (mth notNil and:[mth category = methodCategory]) ifTrue:[
3913
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   102
        ^ ChangeDeltaInformation identical 
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   103
    ].
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   104
    ^ ChangeDeltaInformation different
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   105
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   106
    "Created: / 09-10-2015 / 17:45:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3914
cd8de87107d3 Oops, fixed MethodCategoryChange>>deltaDetail: care for non-existent method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3913
diff changeset
   107
    "Modified: / 12-10-2015 / 16:34:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3913
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   108
!
3d160ce7bef3 Added MethodCategoryChange>>deltaDetail
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3303
diff changeset
   109
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   110
origin
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   111
    ^ origin
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   112
!
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   113
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   114
origin:aMethodChange
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   115
    origin := aMethodChange.
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   116
!
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   117
1052
cc84f5e27bb5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   118
prettyPrintedSource
1846
c0f8e12c9611 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   119
    ^ self sourceForMethod, Character cr 
1052
cc84f5e27bb5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   120
          , '    category:' , methodCategory storeString
1846
c0f8e12c9611 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   121
c0f8e12c9611 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   122
    "Modified: / 09-10-2006 / 13:59:15 / cg"
1052
cc84f5e27bb5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   123
!
cc84f5e27bb5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1009
diff changeset
   124
85
c354e2f81394 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   125
source
1846
c0f8e12c9611 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   126
    ^ self sourceForMethod , ' category:' , methodCategory storeString
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   127
1846
c0f8e12c9611 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1052
diff changeset
   128
    "Modified: / 09-10-2006 / 13:59:10 / cg"
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   129
!
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   130
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   131
source: aString
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   132
    | expr |
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   133
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   134
    expr := Parser parseExpression: aString onError: [ self error: 'Invalid source'].
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   135
    expr isMessage ifFalse:[ self error: 'Invalid source' ].
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   136
    expr selector == #'category:' ifFalse:[ self error: 'Invalid source' ].
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   137
    methodCategory := expr arguments first value.
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   138
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   139
    "Created: / 20-03-2012 / 22:26:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   140
! !
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   141
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   142
!MethodCategoryChange methodsFor:'applying'!
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   143
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   144
apply
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   145
    "apply the change"
85
c354e2f81394 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   146
1915
d23534c8ab03 the method does the change-file-update; NOT me
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
   147
    |mthd|
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   148
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   149
    mthd := self changeMethod.
1915
d23534c8ab03 the method does the change-file-update; NOT me
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
   150
    mthd category:methodCategory asSymbol.
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   151
1915
d23534c8ab03 the method does the change-file-update; NOT me
Claus Gittinger <cg@exept.de>
parents: 1902
diff changeset
   152
    "Modified: / 23-11-2006 / 16:59:09 / cg"
15
639ae882da27 Initial revision
claus
parents:
diff changeset
   153
! !
639ae882da27 Initial revision
claus
parents:
diff changeset
   154
2131
0feb8bbb287d added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2120
diff changeset
   155
!MethodCategoryChange methodsFor:'testing'!
964
64282b5e5c48 added #isMEthodCategoryChange
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   156
64282b5e5c48 added #isMEthodCategoryChange
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   157
isMethodCategoryChange
64282b5e5c48 added #isMEthodCategoryChange
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   158
    ^ true
2263
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   159
!
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   160
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   161
isMethodCodeChange
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   162
    "true if this is a method's code change (not package, category etc.)"
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   163
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   164
    ^ false
964
64282b5e5c48 added #isMEthodCategoryChange
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   165
! !
64282b5e5c48 added #isMEthodCategoryChange
Claus Gittinger <cg@exept.de>
parents: 957
diff changeset
   166
2622
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   167
!MethodCategoryChange methodsFor:'visiting'!
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   168
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   169
acceptChangeVisitor:aVisitor
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   170
    ^ aVisitor visitMethodCategoryChange:self.
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   171
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   172
    "Created: / 25-11-2011 / 17:13:58 / cg"
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   173
! !
853e24f6b303 visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   174
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
   175
!MethodCategoryChange class methodsFor:'documentation'!
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
   176
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
   177
version
3984
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
   178
    ^ '$Header$'
2263
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   179
!
c514b61ac1b2 fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2131
diff changeset
   180
3986
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
   181
version_CVS
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
   182
    ^ '$Header$'
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
   183
!
0ab93d6d6c20 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3984
diff changeset
   184
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   185
version_HG
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   186
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   187
    ^ '$Changeset: <not expanded> $'
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   188
!
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   189
2873
384700ae948f Merged from SVN
vrany
parents: 2622
diff changeset
   190
version_SVN
3984
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
   191
    ^ '$Id$'
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
   192
! !
3984
22c47fc24cd7 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2873
diff changeset
   193