Uses of Class
com.github.difflib.algorithm.Change
-
Packages that use Change Package Description com.github.difflib.algorithm com.github.difflib.algorithm.jgit com.github.difflib.algorithm.myers -
-
Uses of Change in com.github.difflib.algorithm
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.jgit
Methods in com.github.difflib.algorithm.jgit that return types with arguments of type Change Modifier and Type Method Description java.util.List<Change>HistogramDiff. computeDiff(java.util.List<T> source, java.util.List<T> target, DiffAlgorithmListener progress) -
Uses of Change in com.github.difflib.algorithm.myers
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>MyersDiff. buildRevision(PathNode actualPath, java.util.List<T> orig, java.util.List<T> rev)Constructs aPatchfrom a difference path.java.util.List<Change>MyersDiff. 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.
-