java.lang.Object
org.apache.wicket.util.diff.myers.PathNode
org.apache.wicket.util.diff.myers.DiffNode
A diffnode in a diffpath.
A DiffNode and its previous node mark a delta between two input sequences, that is, two differing
subsequences between (possibly zero length) matching sequences.
DiffNodes
and Snakes
allow for compression of diffpaths, as each
snake is represented by a single Snake
node and each contiguous series of
insertions and deletions is represented by a single DiffNodes
.
- Version:
- $Revision: 1.1 $ $Date: 2006/03/12 00:24:21 $
- Author:
- Juanco Anez
-
Field Summary
-
Constructor Summary
-
Method Summary
Methods inherited from class org.apache.wicket.util.diff.myers.PathNode
isBootstrap, previousSnake, toString
-
Constructor Details
-
DiffNode
Constructs a DiffNode.DiffNodes are compressed. That means that the path pointed to by the
prev
parameter will be followed usingPathNode.previousSnake()
until a non-diff node is found.- Parameters:
i
- the position in the original sequencej
- the position in the revised sequenceprev
- the previous node in the path.
-
-
Method Details
-
isSnake
Is this node aSnake node
?
-