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 voidCandidate. blame(EditList editList, Candidate a, Candidate b)(package private) voidCandidate. 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) EditListHistogramDiff.State. editsResult edits we have determined that must be made to convert a to b.protected EditListMyersDiff. editsThe 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 EditListDiffFormatter. 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 anEditListfor better diff consistency.static EditListEditList. 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.voidDiffFormatter. 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 anEditListfor 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 EditListHunkHeader. editListMethods in org.eclipse.jgit.patch that return EditList Modifier and Type Method Description EditListFileHeader. toEditList()Convert to a list describing the content edits performed on this file.EditListHunkHeader. 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)
-