Uses of Class
com.github.difflib.algorithm.Change
-
Packages that use Change Package Description com.github.difflib.algorithm com.github.difflib.algorithm.myers -
-
Uses of Change in com.github.difflib.algorithm
Methods in com.github.difflib.algorithm that return Change Modifier and Type Method Description Change
Change. withEndOriginal(int endOriginal)
Change
Change. withEndRevised(int endRevised)
Methods in com.github.difflib.algorithm that return types with arguments of type Change Modifier and Type Method Description java.util.List<Change>
DiffAlgorithmI. computeDiff(java.util.List<T> source, java.util.List<T> target, DiffAlgorithmListener progress)
Computes the changeset to patch the source list to the target list.default java.util.List<Change>
DiffAlgorithmI. computeDiff(T[] source, T[] target, DiffAlgorithmListener progress)
Simple extension to compute a changeset using arrays. -
Uses of Change in com.github.difflib.algorithm.myers
Fields in com.github.difflib.algorithm.myers with type parameters of type Change Modifier and Type Field Description (package private) java.util.List<Change>
MeyersDiffWithLinearSpace.DiffData. script
Methods in com.github.difflib.algorithm.myers that return types with arguments of type Change Modifier and Type Method Description private java.util.List<Change>
MeyersDiff. buildRevision(PathNode actualPath, java.util.List<T> orig, java.util.List<T> rev)
Constructs aPatch
from a difference path.java.util.List<Change>
MeyersDiff. computeDiff(java.util.List<T> source, java.util.List<T> target, DiffAlgorithmListener progress)
Computes the changeset to patch the source list to the target list.java.util.List<Change>
MeyersDiffWithLinearSpace. computeDiff(java.util.List<T> source, java.util.List<T> target, DiffAlgorithmListener progress)
-