Package org.tigris.subversion.javahl
Interface BlameCallback2
-
- All Known Implementing Classes:
BlameCallbackImpl
public interface BlameCallback2
This interface is used to receive every single line for a file on a the SVNClientInterface.blame call.- Since:
- 1.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
singleLine(java.util.Date date, long revision, java.lang.String author, java.util.Date merged_date, long merged_revision, java.lang.String merged_author, java.lang.String merged_path, java.lang.String line)
the method will be called for every line in a file.
-
-
-
Method Detail
-
singleLine
void singleLine(java.util.Date date, long revision, java.lang.String author, java.util.Date merged_date, long merged_revision, java.lang.String merged_author, java.lang.String merged_path, java.lang.String line)
the method will be called for every line in a file.- Parameters:
date
- the date of the last change.revision
- the revision of the last change.author
- the author of the last change.merged_date
- the date of the last merged change.merged_revision
- the revision of the last merged change.merged_author
- the author of the last merged change.merged_path
- the path of the last merged change.line
- the line in the file
-
-