Interface ISvnDiffCallback
- All Known Implementing Classes:
SvnDiffCallback
,SvnDiffSummarizeCallback
,SvnNgMergeCallback
public interface ISvnDiffCallback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dirAdded
(SvnDiffCallbackResult result, File path, long revision, String copyFromPath, long copyFromRevision) void
dirClosed
(SvnDiffCallbackResult result, File path, boolean isAdded) void
dirDeleted
(SvnDiffCallbackResult result, File path) void
dirOpened
(SvnDiffCallbackResult result, File path, long revision) void
dirPropsChanged
(SvnDiffCallbackResult result, File path, boolean isAdded, SVNProperties propChanges, SVNProperties originalProperties) void
fileAdded
(SvnDiffCallbackResult result, File path, File leftFile, File rightFile, long rev1, long rev2, String mimeType1, String mimeType2, File copyFromPath, long copyFromRevision, SVNProperties propChanges, SVNProperties originalProperties) void
fileChanged
(SvnDiffCallbackResult result, File path, File leftFile, File rightFile, long rev1, long rev2, String mimeType1, String mimeType2, SVNProperties propChanges, SVNProperties originalProperties) void
fileDeleted
(SvnDiffCallbackResult result, File path, File leftFile, File rightFile, String mimeType1, String mimeType2, SVNProperties originalProperties) void
fileOpened
(SvnDiffCallbackResult result, File path, long revision)
-
Method Details
-
fileOpened
- Throws:
SVNException
-
fileChanged
void fileChanged(SvnDiffCallbackResult result, File path, File leftFile, File rightFile, long rev1, long rev2, String mimeType1, String mimeType2, SVNProperties propChanges, SVNProperties originalProperties) throws SVNException - Throws:
SVNException
-
fileAdded
void fileAdded(SvnDiffCallbackResult result, File path, File leftFile, File rightFile, long rev1, long rev2, String mimeType1, String mimeType2, File copyFromPath, long copyFromRevision, SVNProperties propChanges, SVNProperties originalProperties) throws SVNException - Throws:
SVNException
-
fileDeleted
void fileDeleted(SvnDiffCallbackResult result, File path, File leftFile, File rightFile, String mimeType1, String mimeType2, SVNProperties originalProperties) throws SVNException - Throws:
SVNException
-
dirDeleted
- Throws:
SVNException
-
dirOpened
- Throws:
SVNException
-
dirAdded
void dirAdded(SvnDiffCallbackResult result, File path, long revision, String copyFromPath, long copyFromRevision) throws SVNException - Throws:
SVNException
-
dirPropsChanged
void dirPropsChanged(SvnDiffCallbackResult result, File path, boolean isAdded, SVNProperties propChanges, SVNProperties originalProperties) throws SVNException - Throws:
SVNException
-
dirClosed
- Throws:
SVNException
-