Uses of Class
com.github.difflib.algorithm.myers.PathNode
-
Packages that use PathNode Package Description com.github.difflib.algorithm.myers -
-
Uses of PathNode in com.github.difflib.algorithm.myers
Fields in com.github.difflib.algorithm.myers declared as PathNode Modifier and Type Field Description PathNode
PathNode. prev
The previous node in the path.Methods in com.github.difflib.algorithm.myers that return PathNode Modifier and Type Method Description private PathNode
MyersDiff. buildPath(java.util.List<T> orig, java.util.List<T> rev, DiffAlgorithmListener progress)
Computes the minimum diffpath that expresses de differences between the original and revised sequences, according to Gene Myers differencing algorithm.PathNode
PathNode. previousSnake()
Skips sequences ofPathNodes
until a snake or bootstrap node is found, or the end of the path is reached.Methods in com.github.difflib.algorithm.myers with parameters of type PathNode Modifier and Type Method Description private java.util.List<Change>
MyersDiff. buildRevision(PathNode actualPath, java.util.List<T> orig, java.util.List<T> rev)
Constructs aPatch
from a difference path.Constructors in com.github.difflib.algorithm.myers with parameters of type PathNode Constructor Description PathNode(int i, int j, boolean snake, boolean bootstrap, PathNode prev)
Concatenates a new path node with an existing diffpath.
-