Uses of Class
org.eclipse.jgit.diff.EditList
-
Packages that use EditList Package Description org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.patch Patch file parser and data structure. -
-
Uses of EditList in org.eclipse.jgit.blame
Methods in org.eclipse.jgit.blame with parameters of type EditList Modifier and Type Method Description private static void
Candidate. blame(EditList editList, Candidate a, Candidate b)
(package private) void
Candidate. takeBlame(EditList editList, Candidate child)
-
Uses of EditList in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as EditList Modifier and Type Field Description (package private) EditList
HistogramDiff.State. edits
Result edits we have determined that must be made to convert a to b.protected EditList
MyersDiff. edits
The list of edits found during the last call toMyersDiff.calculateEdits(Edit)
Methods in org.eclipse.jgit.diff that return EditList Modifier and Type Method Description <S extends Sequence>
EditListDiffAlgorithm. diff(SequenceComparator<? super S> cmp, S a, S b)
Compare two sequences and identify a list of edits between them.private EditList
DiffFormatter. diff(RawText a, RawText b)
abstract <S extends Sequence>
EditListDiffAlgorithm. diffNonCommon(SequenceComparator<? super S> cmp, S a, S b)
Compare two sequences and identify a list of edits between them.<S extends Sequence>
EditListLowLevelDiffAlgorithm. diffNonCommon(SequenceComparator<? super S> cmp, S a, S b)
Compare two sequences and identify a list of edits between them.private static <S extends Sequence>
EditListDiffAlgorithm. normalize(SequenceComparator<? super S> cmp, EditList e, S a, S b)
Reorganize anEditList
for better diff consistency.static EditList
EditList. singleton(Edit edit)
Construct an edit list containing a single edit.static <S extends Sequence>
EditListSubsequence. toBase(EditList edits, Subsequence<S> a, Subsequence<S> b)
Adjust the Edits to reflect positions in the base sequence.Methods in org.eclipse.jgit.diff with parameters of type EditList Modifier and Type Method Description <S extends Sequence>
voidHistogramDiff. diffNonCommon(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region)
Compare two sequences and identify a list of edits between them.abstract <S extends Sequence>
voidLowLevelDiffAlgorithm. diffNonCommon(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region)
Compare two sequences and identify a list of edits between them.void
DiffFormatter. format(EditList edits, RawText a, RawText b)
Formats a list of edits in unified diff formatprivate static <S extends Sequence>
EditListDiffAlgorithm. normalize(SequenceComparator<? super S> cmp, EditList e, S a, S b)
Reorganize anEditList
for better diff consistency.static <S extends Sequence>
EditListSubsequence. toBase(EditList edits, Subsequence<S> a, Subsequence<S> b)
Adjust the Edits to reflect positions in the base sequence.Constructors in org.eclipse.jgit.diff with parameters of type EditList Constructor Description MyersDiff(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region)
State(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b)
-
Uses of EditList in org.eclipse.jgit.patch
Fields in org.eclipse.jgit.patch declared as EditList Modifier and Type Field Description private EditList
HunkHeader. editList
Methods in org.eclipse.jgit.patch that return EditList Modifier and Type Method Description EditList
FileHeader. toEditList()
Convert to a list describing the content edits performed on this file.EditList
HunkHeader. toEditList()
Convert to a list describing the content edits performed within the hunk.Constructors in org.eclipse.jgit.patch with parameters of type EditList Constructor Description FileHeader(byte[] headerLines, EditList edits, FileHeader.PatchType type)
Constructs a new FileHeaderHunkHeader(FileHeader fh, EditList editList)
-