Uses of Class
org.eclipse.jgit.diff.DiffEntry
-
Packages that use DiffEntry Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.internal.diff org.eclipse.jgit.patch Patch file parser and data structure.org.eclipse.jgit.revwalk Walking revision graphs (commit history). -
-
Uses of DiffEntry in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return types with arguments of type DiffEntry Modifier and Type Method Description List<DiffEntry>
DiffCommand. call()
-
Uses of DiffEntry in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff that return types with arguments of type DiffEntry Modifier and Type Method Description List<DiffEntry>
RenameDetector. compute()
Detect renames in the current file set.List<DiffEntry>
RenameDetector. compute(ContentSource.Pair reader, ProgressMonitor pm)
Detect renames in the current file set.List<DiffEntry>
RenameDetector. compute(ObjectReader reader, ProgressMonitor pm)
Detect renames in the current file set.List<DiffEntry>
RenameDetector. compute(ProgressMonitor pm)
Detect renames in the current file set.static List<DiffEntry>
DiffEntry. scan(TreeWalk walk)
Convert the TreeWalk into DiffEntry headers.static List<DiffEntry>
DiffEntry. scan(TreeWalk walk, boolean includeTrees)
Convert the TreeWalk into DiffEntry headers, depending onincludeTrees
it will add tree objects into result or not.static List<DiffEntry>
DiffEntry. scan(TreeWalk walk, boolean includeTrees, TreeFilter[] markTreeFilters)
Convert the TreeWalk into DiffEntry headers, depending onincludeTrees
it will add tree objects into result or not.List<DiffEntry>
DiffFormatter. scan(AnyObjectId a, AnyObjectId b)
Determine the differences between two trees.List<DiffEntry>
DiffFormatter. scan(RevTree a, RevTree b)
Determine the differences between two trees.List<DiffEntry>
DiffFormatter. scan(AbstractTreeIterator a, AbstractTreeIterator b)
Determine the differences between two trees.Methods in org.eclipse.jgit.diff with parameters of type DiffEntry Modifier and Type Method Description void
RenameDetector. add(DiffEntry entry)
Add an entry to be considered for rename detection.void
DiffFormatter. format(DiffEntry ent)
Format a patch script for one file entry.protected void
DiffFormatter. formatIndexLine(OutputStream o, DiffEntry ent)
Format index lineprotected void
PatchIdDiffFormatter. formatIndexLine(OutputStream o, DiffEntry ent)
Format index lineObjectLoader
ContentSource.Pair. open(DiffEntry.Side side, DiffEntry ent)
Open the object.long
ContentSource.Pair. size(DiffEntry.Side side, DiffEntry ent)
Determine the size of the object.FileHeader
DiffFormatter. toFileHeader(DiffEntry ent)
Creates aFileHeader
representing the givenDiffEntry
Method parameters in org.eclipse.jgit.diff with type arguments of type DiffEntry Modifier and Type Method Description void
RenameDetector. addAll(Collection<DiffEntry> entriesToAdd)
Add entries to be considered for rename detection.void
DiffFormatter. format(List<? extends DiffEntry> entries)
Format a patch script from a list of difference entries. -
Uses of DiffEntry in org.eclipse.jgit.internal.diff
Methods in org.eclipse.jgit.internal.diff that return types with arguments of type DiffEntry Modifier and Type Method Description List<DiffEntry>
FilteredRenameDetector. compute(List<DiffEntry> changes, List<PathFilter> pathFilters)
Tries to avoid computation overhead inRenameDetector.compute()
by filtering diffs related to the path filters only.List<DiffEntry>
FilteredRenameDetector. compute(List<DiffEntry> diffs, PathFilter pathFilter)
Method parameters in org.eclipse.jgit.internal.diff with type arguments of type DiffEntry Modifier and Type Method Description List<DiffEntry>
FilteredRenameDetector. compute(List<DiffEntry> changes, List<PathFilter> pathFilters)
Tries to avoid computation overhead inRenameDetector.compute()
by filtering diffs related to the path filters only.List<DiffEntry>
FilteredRenameDetector. compute(List<DiffEntry> diffs, PathFilter pathFilter)
-
Uses of DiffEntry in org.eclipse.jgit.patch
Subclasses of DiffEntry in org.eclipse.jgit.patch Modifier and Type Class Description class
CombinedFileHeader
A file in the Git "diff --cc" or "diff --combined" format.class
FileHeader
Patch header describing an action for a single file path. -
Uses of DiffEntry in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk with parameters of type DiffEntry Modifier and Type Method Description abstract void
RenameCallback. renamed(DiffEntry entry)
Called whenever a diff was found that is actually a rename or copy of a file.
-