Interface ISVNEditor2
- All Known Implementing Classes:
SVNTreeConflictEditor
public interface ISVNEditor2
This interface may change until together SVN Ev2 (currently it is not released yet)
- Since:
- 1.8
-
Method Summary
Modifier and TypeMethodDescriptionvoidabort()voidaddAbsent(java.lang.String path, SVNNodeKind kind, long replacesRev) voidaddDir(java.lang.String path, java.util.List<java.lang.String> children, SVNProperties props, long replacesRev) voidaddFile(java.lang.String path, SvnChecksum checksum, java.io.InputStream contents, SVNProperties props, long replacesRev) voidaddSymlink(java.lang.String path, java.lang.String target, SVNProperties props, long replacesRev) voidalterDir(java.lang.String path, long revision, java.util.List<java.lang.String> children, SVNProperties props) voidalterFile(java.lang.String path, long revision, SVNProperties props, SvnChecksum checksum, java.io.InputStream newContents) voidalterSymlink(java.lang.String path, long revision, SVNProperties props, java.lang.String target) voidcomplete()voidcopy(java.lang.String srcPath, long srcRevision, java.lang.String dstPath, long replacesRev) voiddelete(java.lang.String path, long revision) voidmove(java.lang.String srcPath, long srcRevision, java.lang.String dstPath, long replacesRev) voidrotate(java.util.List<java.lang.String> relPaths, java.util.List<java.lang.String> revisions)
-
Method Details
-
addDir
void addDir(java.lang.String path, java.util.List<java.lang.String> children, SVNProperties props, long replacesRev) throws SVNException - Throws:
SVNException
-
addFile
void addFile(java.lang.String path, SvnChecksum checksum, java.io.InputStream contents, SVNProperties props, long replacesRev) throws SVNException - Throws:
SVNException
-
addSymlink
void addSymlink(java.lang.String path, java.lang.String target, SVNProperties props, long replacesRev) throws SVNException - Throws:
SVNException
-
addAbsent
- Throws:
SVNException
-
alterDir
void alterDir(java.lang.String path, long revision, java.util.List<java.lang.String> children, SVNProperties props) throws SVNException - Throws:
SVNException
-
alterFile
void alterFile(java.lang.String path, long revision, SVNProperties props, SvnChecksum checksum, java.io.InputStream newContents) throws SVNException - Throws:
SVNException
-
alterSymlink
void alterSymlink(java.lang.String path, long revision, SVNProperties props, java.lang.String target) throws SVNException - Throws:
SVNException
-
delete
- Throws:
SVNException
-
copy
void copy(java.lang.String srcPath, long srcRevision, java.lang.String dstPath, long replacesRev) throws SVNException - Throws:
SVNException
-
move
void move(java.lang.String srcPath, long srcRevision, java.lang.String dstPath, long replacesRev) throws SVNException - Throws:
SVNException
-
rotate
void rotate(java.util.List<java.lang.String> relPaths, java.util.List<java.lang.String> revisions) throws SVNException - Throws:
SVNException
-
complete
void complete() -
abort
void abort()
-