Uses of Class
org.assertj.core.util.diff.myers.PathNode
-
Packages that use PathNode Package Description org.assertj.core.util.diff.myers -
-
Uses of PathNode in org.assertj.core.util.diff.myers
Subclasses of PathNode in org.assertj.core.util.diff.myers Modifier and Type Class Description classDiffNodeCopy from https://code.google.com/p/java-diff-utils/.classSnakeCopy from https://code.google.com/p/java-diff-utils/.Fields in org.assertj.core.util.diff.myers declared as PathNode Modifier and Type Field Description PathNodePathNode. prevThe previous node in the path.Methods in org.assertj.core.util.diff.myers that return PathNode Modifier and Type Method Description PathNodeMyersDiff. buildPath(List<T> orig, List<T> 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.assertj.core.util.diff.myers with parameters of type PathNode Modifier and Type Method Description Patch<T>MyersDiff. buildRevision(PathNode path, List<T> orig, List<T> rev)Constructs aPatchfrom a difference path.Constructors in org.assertj.core.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.
-