org.tigris.subversion.javahl
Interface BlameCallback
public interface BlameCallback
this interface is used to receive every single line for a file on a
the SVNClientinterface.blame call.
void | singleLine(Date changed, long revision, String author, String line) - the method will be called for every line in a file.
|
singleLine
public void singleLine(Date changed,
long revision,
String author,
String line)
the method will be called for every line in a file.
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