Package org.tmatesoft.svn.core
Interface ISVNLogEntryHandler
-
- All Known Implementing Classes:
SVNBasicDelegate.LocationsLogEntryHandler
,SVNLogCommand
,SVNMergeDriver.CopyFromReceiver
,SVNMergeDriver.LogHandlerFilter
,SVNMergeDriver.NoopLogHandler
,SVNMergeInfoCommand
,SvnNgMergeDriver.FindOperativeSubtreeRevisions
,SvnNgMergeDriver.NoopLogHandler
,SvnOldLogMergeInfo
,SvnRemoteLog
,SVNRepository.DeletedRevisionLogHandler
,SVNRepository.FileRevisionsLogHandler
,SVNRepository.LocationSegmentsLogHandler
,SVNRepository.LocationsLogHandler
,SVNXMLLogHandler
public interface ISVNLogEntryHandler
The ISVNLogEntryHandler interface should be implemented in order to handle per revision commit information (in a kind of a revisions history operation)- log entries (represented by SVNLogEntry objects).- Since:
- 1.2
- Version:
- 1.3
- See Also:
SVNLogEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleLogEntry(SVNLogEntry logEntry)
Handles a log entry passed.
-
-
-
Method Detail
-
handleLogEntry
void handleLogEntry(SVNLogEntry logEntry) throws SVNException
Handles a log entry passed.- Parameters:
logEntry
- anSVNLogEntry
object that represents per revision information (committed paths, log message, etc.)- Throws:
SVNException
-
-