Uses of Interface
org.tmatesoft.svn.core.io.ISVNDeltaConsumer
-
Packages that use ISVNDeltaConsumer Package Description org.tmatesoft.svn.core This package mostly contains common classes as well as interfaces used throughout all the library.org.tmatesoft.svn.core.internal.delta org.tmatesoft.svn.core.internal.io.dav.handlers org.tmatesoft.svn.core.internal.io.fs org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc17 org.tmatesoft.svn.core.internal.wc17.db org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.io This package provides a low-level API for direct interacting with a Subversion repository on the SVN protocol level.org.tmatesoft.svn.core.io.diff This package contains the classes necessary for such purposes as: generating delta windows upon comparing target bytes against source ones (also may be vs.org.tmatesoft.svn.core.replicator This package provides classes that allow to replicate existing repositories. -
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core
Classes in org.tmatesoft.svn.core that implement ISVNDeltaConsumer Modifier and Type Class Description class
SVNAnnotationGenerator
The SVNAnnotationGenerator class is used to annotate files - that is to place author and revision information in-line for the specified file. -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.delta
Methods in org.tmatesoft.svn.core.internal.delta with parameters of type ISVNDeltaConsumer Modifier and Type Method Description void
SVNDeltaReader. nextWindow(byte[] data, int offset, int length, java.lang.String path, ISVNDeltaConsumer consumer)
void
SVNDeltaReader. reset(java.lang.String path, ISVNDeltaConsumer consumer)
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.io.dav.handlers
Methods in org.tmatesoft.svn.core.internal.io.dav.handlers that return ISVNDeltaConsumer Modifier and Type Method Description protected abstract ISVNDeltaConsumer
BasicDAVDeltaHandler. getDeltaConsumer()
protected ISVNDeltaConsumer
DAVEditorHandler. getDeltaConsumer()
protected ISVNDeltaConsumer
DAVFileRevisionHandler. getDeltaConsumer()
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.io.fs
Classes in org.tmatesoft.svn.core.internal.io.fs that implement ISVNDeltaConsumer Modifier and Type Class Description class
FSCommitEditor
class
FSDeltaConsumer
class
FSOutputStream
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc
Subinterfaces of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc Modifier and Type Interface Description interface
ISVNReusableEditor
interface
ISVNUpdateEditor
Classes in org.tmatesoft.svn.core.internal.wc that implement ISVNDeltaConsumer Modifier and Type Class Description class
SVNAmbientDepthFilterEditor
class
SVNCancellableEditor
class
SVNDepthFilterEditor
class
SVNDiffEditor
class
SVNDiffStatusEditor
class
SVNDumpEditor
class
SVNExportEditor
class
SVNNodeEditor
class
SVNRemoteDiffEditor
class
SVNRemoteStatusEditor
class
SVNSynchronizeEditor
class
SVNUpdateEditor
class
SVNUpdateEditor15
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc17
Classes in org.tmatesoft.svn.core.internal.wc17 that implement ISVNDeltaConsumer Modifier and Type Class Description class
SVNAmbientDepthFilterEditor17
class
SVNDiffEditor17
class
SVNRemoteStatusEditor17
class
SVNUpdateEditor17
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc17.db
Classes in org.tmatesoft.svn.core.internal.wc17.db that implement ISVNDeltaConsumer Modifier and Type Class Description class
SvnExternalUpdateEditor
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc2.ng
Classes in org.tmatesoft.svn.core.internal.wc2.ng that implement ISVNDeltaConsumer Modifier and Type Class Description class
SvnDiffEditor
class
SvnNgRemoteDiffEditor
class
SvnNgRemoteDiffEditor2
class
SvnNgRemoteMergeEditor
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.io
Subinterfaces of ISVNDeltaConsumer in org.tmatesoft.svn.core.io Modifier and Type Interface Description interface
ISVNEditor
The ISVNEditor interface is used by SVNRepository to update versioned files/dirs, check out files/dirs from a repository, commit changes to a repository, take status of files/dirs, get differences between files.interface
ISVNFileRevisionHandler
The ISVNFileRevisionHandler interface should be implemented for handling information about file revisions - that is file path, properties, revision properties against a particular revision. -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.io.diff
Methods in org.tmatesoft.svn.core.io.diff with parameters of type ISVNDeltaConsumer Modifier and Type Method Description void
SVNDeltaGenerator. sendDelta(java.lang.String path, byte[] source, int sourceLength, long sourceOffset, byte[] target, int targetLength, ISVNDeltaConsumer consumer)
Generates a series of diff windows of fixed size comparingtargetLength
of target bytes (read fromtarget
stream) againstsourceLength
of source bytes (read fromsource
stream at offsetsourceOffset
), and sends produced windows to the providedconsumer
.void
SVNDeltaGenerator. sendDelta(java.lang.String path, byte[] target, int targetLength, ISVNDeltaConsumer consumer)
Generates a series of diff windows of fixed size comparing target bytes (read fromtarget
stream) against an empty file, and sends produced windows to the provided consumer.java.lang.String
SVNDeltaGenerator. sendDelta(java.lang.String path, java.io.InputStream source, long sourceOffset, java.io.InputStream target, ISVNDeltaConsumer consumer, boolean computeChecksum)
Generates a series of diff windows of fixed size comparing target bytes (read fromtarget
stream) against source bytes (read fromsource
stream), and sends produced windows to the provided consumer.java.lang.String
SVNDeltaGenerator. sendDelta(java.lang.String path, java.io.InputStream target, ISVNDeltaConsumer consumer, boolean computeChecksum)
Generates a series of diff windows of fixed size comparing target bytes (fromtarget
stream) against an empty file and sends produced windows to the provided consumer. -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.replicator
Classes in org.tmatesoft.svn.core.replicator that implement ISVNDeltaConsumer Modifier and Type Class Description class
SVNReplicationEditor
The SVNReplicationEditor is an editor implementation used by a repository replicator as a bridge between an update editor for the source repository and a commit editor of the target one.
-