Uses of Interface
com.github.difflib.algorithm.DiffAlgorithmListener
Packages that use DiffAlgorithmListener
Package
Description
-
Uses of DiffAlgorithmListener in com.github.difflib
Methods in com.github.difflib with parameters of type DiffAlgorithmListenerModifier and TypeMethodDescriptionDiffUtils.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 DiffAlgorithmListenerModifier and TypeMethodDescriptionDiffAlgorithmI.computeDiff
(List<T> source, List<T> target, DiffAlgorithmListener progress) Computes the changeset to patch the source list to the target list.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
Fields in com.github.difflib.algorithm.jgit declared as DiffAlgorithmListenerMethods in com.github.difflib.algorithm.jgit with parameters of type DiffAlgorithmListenerModifier and TypeMethodDescriptionHistogramDiff.computeDiff
(List<T> source, List<T> target, DiffAlgorithmListener progress) Constructors in com.github.difflib.algorithm.jgit with parameters of type DiffAlgorithmListener -
Uses of DiffAlgorithmListener in com.github.difflib.algorithm.myers
Methods in com.github.difflib.algorithm.myers with parameters of type DiffAlgorithmListenerModifier and TypeMethodDescriptionprivate PathNode
Computes the minimum diffpath that expresses de differences between the original and revised sequences, according to Gene Myers differencing algorithm.MeyersDiff.computeDiff
(List<T> source, List<T> target, DiffAlgorithmListener progress) Computes the changeset to patch the source list to the target list.MeyersDiffWithLinearSpace.computeDiff
(List<T> source, List<T> target, DiffAlgorithmListener progress)