Package org.tmatesoft.svn.core.io
Interface ISVNReporterBaton
-
- All Known Implementing Classes:
SvnExternalFileReporter
,SVNReporter
,SVNReporter17
,SVNStatusReporter
,SVNStatusReporter17
public interface ISVNReporterBaton
The ISVNReporterBaton interface should be implemented by callers of update, checkout, etc. operations of SVNRepository drivers in order to describe the state of local items.For more information on using reporters, please, read these on-line article: Using ISVNReporter/ISVNEditor in update-related operations
- Since:
- 1.2
- Version:
- 1.3
- See Also:
ISVNReporter
,SVNRepository
, Examples
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
report(ISVNReporter reporter)
Makes a report describing the state of local items in order to get the differences between the local items and what actually is in a repository.
-
-
-
Method Detail
-
report
void report(ISVNReporter reporter) throws SVNException
Makes a report describing the state of local items in order to get the differences between the local items and what actually is in a repository.- Parameters:
reporter
- a reporter passed to make reports- Throws:
SVNException
-
-