| org.tigris.subversion.javahl.BlameCallback
BlameCallback | public interface BlameCallback (Code) | | this interface is used to receive every single line for a file on a
the SVNClientinterface.blame call.
|
Method Summary | |
public 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)(Code) | | the method will be called for every line in a file.
Parameters: changed - the date of the last change. Parameters: revision - the revision of the last change. Parameters: author - the author of the last change. Parameters: line - the line in the file |
|
|