Interface BlameLineCallback
public interface BlameLineCallback
This interface is used to receive every single line for a file on a
the
ISVNClient#blame
call.- Since:
- 1.12
-
Method Details
-
singleLine
void singleLine(long lineNum, long revision, Map<String,byte[]> revProps, long mergedRevision, Map<String,byte[]> mergedRevProps, String mergedPath, boolean localChange, byte[] line) throws ClientExceptionthe method will be called for every line in a file.- Parameters:
lineNum
- the line number for this linerevision
- the revision of the last change.revProps
- the revision properties for this revision.mergedRevision
- the revision of the last merged change.mergedRevProps
- the revision properties for the last merged change.mergedPath
- the path of the last merged change.localChange
- true if the line was locally modified.line
- the line in the file.- Throws:
ClientException
-