net.sf.statsvn.util
public interface ISvnDiffProcessor
Modifier and Type | Method and Description |
---|---|
Vector |
getLineDiff(String newRevNr)
Returns line count differences for all files in a particular revision.
|
int[] |
getLineDiff(String oldRevNr,
String newRevNr,
String filename)
Returns line count differences between two revisions of a file.
|
int[] getLineDiff(String oldRevNr, String newRevNr, String filename) throws IOException, BinaryDiffException
oldRevNr
- old revision numbernewRevNr
- new revision numberfilename
- the filenameIOException
- problem parsing the streamBinaryDiffException
- if the error message is due to trying to diff binary files.Vector getLineDiff(String newRevNr) throws IOException, BinaryDiffException
newRevNr
- new revision numberIOException
- problem parsing the streamBinaryDiffException
- if the error message is due to trying to diff binary files.