Uses of Interface
com.github.difflib.algorithm.DiffAlgorithmListener
-
Packages that use DiffAlgorithmListener Package Description com.github.difflib com.github.difflib.algorithm com.github.difflib.algorithm.jgit com.github.difflib.algorithm.myers -
-
Uses of DiffAlgorithmListener in com.github.difflib
Methods in com.github.difflib with parameters of type DiffAlgorithmListener Modifier and Type Method Description static Patch<String>DiffUtils. diff(String sourceText, String targetText, DiffAlgorithmListener progress)Computes the difference between the original and revised text.static <T> Patch<T>DiffUtils. diff(List<T> original, List<T> revised, DiffAlgorithmI<T> algorithm, DiffAlgorithmListener progress)static <T> Patch<T>DiffUtils. diff(List<T> original, List<T> revised, DiffAlgorithmI<T> algorithm, DiffAlgorithmListener progress, boolean includeEqualParts)Computes the difference between the original and revised list of elements with default diff algorithmstatic <T> Patch<T>DiffUtils. diff(List<T> original, List<T> revised, DiffAlgorithmListener progress)Computes the difference between the original and revised list of elements with default diff algorithm -
Uses of DiffAlgorithmListener in com.github.difflib.algorithm
Methods in com.github.difflib.algorithm with parameters of type DiffAlgorithmListener Modifier and Type Method Description List<Change>DiffAlgorithmI. computeDiff(List<T> source, List<T> target, DiffAlgorithmListener progress)Computes the changeset to patch the source list to the target list.default List<Change>DiffAlgorithmI. computeDiff(T[] source, T[] target, DiffAlgorithmListener progress)Simple extension to compute a changeset using arrays. -
Uses of DiffAlgorithmListener in com.github.difflib.algorithm.jgit
Methods in com.github.difflib.algorithm.jgit with parameters of type DiffAlgorithmListener Modifier and Type Method Description List<Change>HistogramDiff. computeDiff(List<T> source, List<T> target, DiffAlgorithmListener progress) -
Uses of DiffAlgorithmListener in com.github.difflib.algorithm.myers
Methods in com.github.difflib.algorithm.myers with parameters of type DiffAlgorithmListener Modifier and Type Method Description List<Change>MeyersDiff. computeDiff(List<T> source, List<T> target, DiffAlgorithmListener progress)Computes the changeset to patch the source list to the target list.List<Change>MeyersDiffWithLinearSpace. computeDiff(List<T> source, List<T> target, DiffAlgorithmListener progress)
-