Uses of Class
org.apache.wicket.util.diff.myers.PathNode
-
Packages that use PathNode Package Description org.apache.wicket.util.diff.myers Thediff.myerspackage implements Gene Myers' differencing algorithm. -
-
Uses of PathNode in org.apache.wicket.util.diff.myers
Subclasses of PathNode in org.apache.wicket.util.diff.myers Modifier and Type Class Description classDiffNodeA diffnode in a diffpath.classSnakeRepresents a snake in a diffpath.Fields in org.apache.wicket.util.diff.myers declared as PathNode Modifier and Type Field Description PathNodePathNode. prevThe previous node in the path.Methods in org.apache.wicket.util.diff.myers that return PathNode Modifier and Type Method Description static PathNodeMyersDiff. buildPath(Object[] orig, Object[] rev)Computes the minimum diffpath that expresses de differences between the original and revised sequences, according to Gene Myers differencing algorithm.PathNodePathNode. previousSnake()Methods in org.apache.wicket.util.diff.myers with parameters of type PathNode Modifier and Type Method Description static RevisionMyersDiff. buildRevision(PathNode path, Object[] orig, Object[] rev)Constructs aRevisionfrom a difference path.Constructors in org.apache.wicket.util.diff.myers with parameters of type PathNode Constructor Description DiffNode(int i, int j, PathNode prev)Constructs a DiffNode.PathNode(int i, int j, PathNode prev)Concatenates a new path node with an existing diffpath.Snake(int i, int j, PathNode prev)Constructs a snake node.
-