org.tmatesoft.svn.core.io
public interface ISVNDeltaConsumer
delta
generator
when generating a series of diff windows from sources (text/binary streams).
Version: 1.1.1
Method Summary | |
---|---|
void | applyTextDelta(String path, String baseChecksum)
Starts applying text delta(s) to an opened file.
|
OutputStream | textDeltaChunk(String path, SVNDiffWindow diffWindow)
Collects a next delta chunk.
|
void | textDeltaEnd(String path)
Finalizes collecting text delta(s).
|
Parameters: path a file path relative to the edit root directory baseChecksum an MD5 checksum for the base file contents (before the file is changed)
Throws: SVNException if the calculated base file checksum didn't match the expected
baseChecksum
If there are more than one windows for the file, this method is called several times.
Parameters: path a file path relative to the edit root directory diffWindow a next diff window
Returns: an output stream
Throws: SVNException
Parameters: path a file path relative to the edit root directory
Throws: SVNException