Uses of Interface
org.tmatesoft.svn.core.io.ISVNDeltaConsumer
Packages that use ISVNDeltaConsumer
Package
Description
This package mostly contains common classes as well as interfaces used
throughout all the library.
This package provides a low-level API for direct interacting with a Subversion repository on
the SVN protocol level.
This package contains the classes necessary for such purposes as: generating
delta windows upon comparing target bytes against source ones (also may be
vs.
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 ISVNDeltaConsumerModifier and TypeClassDescriptionclass
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 ISVNDeltaConsumerModifier and TypeMethodDescriptionvoid
SVNDeltaReader.nextWindow
(byte[] data, int offset, int length, String path, ISVNDeltaConsumer consumer) void
SVNDeltaReader.reset
(String path, ISVNDeltaConsumer consumer) -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.io.dav
Classes in org.tmatesoft.svn.core.internal.io.dav that implement ISVNDeltaConsumer -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.io.dav.handlers
Fields in org.tmatesoft.svn.core.internal.io.dav.handlers declared as ISVNDeltaConsumerMethods in org.tmatesoft.svn.core.internal.io.dav.handlers that return ISVNDeltaConsumerModifier and TypeMethodDescriptionprotected 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 -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.io.svn
Classes in org.tmatesoft.svn.core.internal.io.svn that implement ISVNDeltaConsumer -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.util
Classes in org.tmatesoft.svn.core.internal.util that implement ISVNDeltaConsumer -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc
Subinterfaces of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wcClasses in org.tmatesoft.svn.core.internal.wc that implement ISVNDeltaConsumerModifier and TypeClassDescriptionclass
class
class
class
class
class
class
class
class
class
class
class
class
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc17
Classes in org.tmatesoft.svn.core.internal.wc17 that implement ISVNDeltaConsumerModifier and TypeClassDescriptionclass
class
class
class
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc17.db
Classes in org.tmatesoft.svn.core.internal.wc17.db that implement ISVNDeltaConsumer -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.internal.wc2.ng
Classes in org.tmatesoft.svn.core.internal.wc2.ng that implement ISVNDeltaConsumerModifier and TypeClassDescriptionclass
class
class
class
private class
-
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.io
Subinterfaces of ISVNDeltaConsumer in org.tmatesoft.svn.core.ioModifier and TypeInterfaceDescriptioninterface
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
The ISVNFileRevisionHandler interface should be implemented for handling information about file revisions - that is file path, properties, revision properties against a particular revision.Classes in org.tmatesoft.svn.core.io that implement ISVNDeltaConsumerModifier and TypeClassDescription(package private) class
The SVNFileCheckoutEditor is an adapter which only handles file contents and properties during a checkout and redirects that information to itsISVNFileCheckoutTarget
handler. -
Uses of ISVNDeltaConsumer in org.tmatesoft.svn.core.io.diff
Methods in org.tmatesoft.svn.core.io.diff with parameters of type ISVNDeltaConsumerModifier and TypeMethodDescriptionvoid
SVNDeltaGenerator.sendDelta
(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
(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.private void
SVNDeltaGenerator.sendDelta
(String path, long sourceOffset, byte[] source, int sourceLength, byte[] target, int targetLength, ISVNDeltaConsumer consumer) SVNDeltaGenerator.sendDelta
(String path, InputStream source, long sourceOffset, 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.SVNDeltaGenerator.sendDelta
(String path, 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 ISVNDeltaConsumerModifier and TypeClassDescriptionclass
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.