Uses of Class
org.eclipse.jgit.diff.EditList
Packages that use EditList
Package
Description
Computing blame/annotate information of files.
Comparing file contents by computing diffs.
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 -
Uses of EditList in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as EditListModifier and TypeFieldDescription(package private) final 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 EditListModifier and TypeMethodDescriptionDiffAlgorithm.diff
(SequenceComparator<? super S> cmp, S a, S b) Compare two sequences and identify a list of edits between them.private EditList
DiffAlgorithm.diffNonCommon
(SequenceComparator<? super S> cmp, S a, S b) Compare two sequences and identify a list of edits between them.LowLevelDiffAlgorithm.diffNonCommon
(SequenceComparator<? super S> cmp, S a, S b) Compare two sequences and identify a list of edits between them.DiffAlgorithm.normalize
(SequenceComparator<? super S> cmp, EditList e, S a, S b) Reorganize anEditList
for better diff consistency.static EditList
Construct an edit list containing a single edit.Subsequence.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 EditListModifier and TypeMethodDescription<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
Formats a list of edits in unified diff formatDiffAlgorithm.normalize
(SequenceComparator<? super S> cmp, EditList e, S a, S b) Reorganize anEditList
for better diff consistency.Subsequence.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 EditListModifierConstructorDescriptionprivate
MyersDiff
(EditList edits, HashedSequenceComparator<S> cmp, HashedSequence<S> a, HashedSequence<S> b, Edit region) (package private)
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 EditListMethods in org.eclipse.jgit.patch that return EditListModifier and TypeMethodDescriptionFileHeader.toEditList()
Convert to a list describing the content edits performed on this file.HunkHeader.toEditList()
Convert to a list describing the content edits performed within the hunk.Constructors in org.eclipse.jgit.patch with parameters of type EditListModifierConstructorDescriptionFileHeader
(byte[] headerLines, EditList edits, FileHeader.PatchType type) Constructs a new FileHeader(package private)
HunkHeader
(FileHeader fh, EditList editList)