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