Package org.eclipse.jgit.revwalk
Class RenameCallback
- java.lang.Object
-
- org.eclipse.jgit.revwalk.RenameCallback
-
public abstract class RenameCallback extends Object
An instance of this class can be used in conjunction with aFollowFilter
. Whenever a rename has been detected during a revision walk, it will be reported here.
-
-
Constructor Summary
Constructors Constructor Description RenameCallback()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
renamed(DiffEntry entry)
Called whenever a diff was found that is actually a rename or copy of a file.
-
-
-
Method Detail
-
renamed
public abstract void renamed(DiffEntry entry)
Called whenever a diff was found that is actually a rename or copy of a file.- Parameters:
entry
- the entry representing the rename/copy
-
-