Uses of Class
com.github.difflib.text.DiffRow
-
Packages that use DiffRow Package Description com.github.difflib.text -
-
Uses of DiffRow in com.github.difflib.text
Methods in com.github.difflib.text that return DiffRow Modifier and Type Method Description private DiffRow
DiffRowGenerator. buildDiffRow(DiffRow.Tag type, java.lang.String orgline, java.lang.String newline)
private DiffRow
DiffRowGenerator. buildDiffRowWithoutNormalizing(DiffRow.Tag type, java.lang.String orgline, java.lang.String newline)
Methods in com.github.difflib.text that return types with arguments of type DiffRow Modifier and Type Method Description java.util.List<DiffRow>
DiffRowGenerator. generateDiffRows(java.util.List<java.lang.String> original, Patch<java.lang.String> patch)
Generates the DiffRows describing the difference between original and revised texts using the given patch.java.util.List<DiffRow>
DiffRowGenerator. generateDiffRows(java.util.List<java.lang.String> original, java.util.List<java.lang.String> revised)
Get the DiffRows describing the difference between original and revised texts using the given patch.private java.util.List<DiffRow>
DiffRowGenerator. generateInlineDiffs(AbstractDelta<java.lang.String> delta)
Add the inline diffs for given delta
-