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