ChangeDeltaInformation.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 22 Mar 2013 11:11:55 +0000
branchjv
changeset 3128 87750af738dc
parent 3125 08d6603c4fe9
parent 3121 19723298dd2c
child 3219 92e64a42ab4e
permissions -rw-r--r--
Merged heads
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     1
"
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     3
              All Rights Reserved
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     4
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     5
 This software is furnished under a license and may be used
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     6
 only in accordance with the terms of that license and with the
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     8
 be provided or otherwise made available to, or used by, any
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
     9
 other person.  No title to or ownership of the software is
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    10
 hereby transferred.
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    11
"
2493
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Object subclass:#ChangeDeltaInformation
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:'shortDeltaSymbol'
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:'Unknown Identical Different Added Removed IdenticalButWhiteSpace
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
		IdenticalButFormat IdenticalSemantically'
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'System-Changes'
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!ChangeDeltaInformation class methodsFor:'documentation'!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    24
copyright
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    25
"
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    26
 COPYRIGHT (c) 2006 by eXept Software AG
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    27
              All Rights Reserved
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    28
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    29
 This software is furnished under a license and may be used
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    30
 only in accordance with the terms of that license and with the
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    32
 be provided or otherwise made available to, or used by, any
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    33
 other person.  No title to or ownership of the software is
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    34
 hereby transferred.
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    35
"
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    36
!
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    37
2493
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
documentation
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    delta used to return a symbol (#=, #~, #+ or #-);
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    for more detail, use instances of me:
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
        Unknown                 delta is unknown
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
        Identical               exactly the same
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
        IdenticalButWhiteSpace  code is formatted different, but AST is the same
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
        SemanticallyIdentical   code is different, but semantically the same
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
                                (for example, ifNil: -> isNil ifTrue:)
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
        Different               code is different
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
        Added                   method/class is added by change
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
        Removed                 method/class is removed by change
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
! !
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
!ChangeDeltaInformation class methodsFor:'initialization'!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
initialize
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    Unknown                 := self new shortDeltaSymbol:#'?'.    "/ delta is unknown
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    Identical               := self new shortDeltaSymbol:#'='.    "/ exactly the same
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    IdenticalButWhiteSpace  := self new shortDeltaSymbol:#'W'.    "/ code is the same except for indentation
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    IdenticalButFormat      := self new shortDeltaSymbol:#'F'.    "/ code is formatted different, but AST is the same
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    IdenticalSemantically   := self new shortDeltaSymbol:#'%'.    "/ code is different, but semantically the same
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
                                                                  "/ (for example, ifNil: -> isNil ifTrue:)
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    Different               := self new shortDeltaSymbol:#'~'.    "/ code is different
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
    Added                   := self new shortDeltaSymbol:#'+'.    "/ method/class is added by change
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
    Removed                 := self new shortDeltaSymbol:#'-'.    "/ method/class is removed by change
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    "Created: / 31-08-2011 / 10:09:24 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
! !
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
!ChangeDeltaInformation class methodsFor:'accessing'!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
added
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    "method/class is added by change"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    ^ Added
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
    "Modified (comment): / 31-08-2011 / 10:20:51 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
different
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
    "code is different"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
    ^ Different
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
    "Modified (comment): / 31-08-2011 / 10:21:07 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
identical
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    "exactly the same"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
    ^ Identical
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
    "Modified (comment): / 31-08-2011 / 10:21:18 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    93
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
identicalButFormat
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
    "code is formatted different, but AST is the same"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    ^ IdenticalButFormat
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
    "Created: / 31-08-2011 / 10:23:18 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
identicalButWhiteSpace
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
    "code is the same except for indentation"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
    ^ IdenticalButWhiteSpace
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
    "Modified (comment): / 31-08-2011 / 10:23:49 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
identicalSemantically
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
    "code is different, but semantically the same.
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
     (for example, ifNil: -> isNil ifTrue:)"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
    ^ IdenticalSemantically
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    "Modified (comment): / 31-08-2011 / 10:24:04 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
removed
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
    "method/class is removed by change"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
    ^ Removed
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
    "Modified (comment): / 31-08-2011 / 10:24:14 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
unknown
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
    "another change / cannot figure out what has changed"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
    ^ Unknown
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
    "Created: / 31-08-2011 / 10:20:13 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
! !
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
!ChangeDeltaInformation methodsFor:'accessing'!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
shortDeltaSymbol
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
    ^ shortDeltaSymbol
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
    "Created: / 31-08-2011 / 10:39:01 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   142
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   143
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
shortDeltaSymbol:something
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
    shortDeltaSymbol := something.
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
    "Created: / 31-08-2011 / 10:39:05 / cg"
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
! !
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
!ChangeDeltaInformation class methodsFor:'documentation'!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
version
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   153
    ^ '$Header: ChangeDeltaInformation.st 1909 2012-03-31 00:14:49Z vranyj1 $'
2493
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
!
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
version_CVS
3011
1997ff6e7e55 trunk branched into /branches/jv
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2493
diff changeset
   157
    ^ '§Header: /cvs/stx/stx/libbasic3/ChangeDeltaInformation.st,v 1.1 2011/08/31 09:45:27 cg Exp §'
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
   158
!
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
   159
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   160
version_HG
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   161
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   162
    ^ '$Changeset: <not expanded> $'
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   163
!
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   164
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
   165
version_SVN
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   166
    ^ '§Id: ChangeDeltaInformation.st 1909 2012-03-31 00:14:49Z vranyj1 §'
2493
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
! !
457dd1375734 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
   169
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
   170
ChangeDeltaInformation initialize!