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.
|
Modifier and Type | Class and 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.
|
Modifier and Type | Method and Description |
---|---|
void |
SVNDeltaReader.nextWindow(byte[] data,
int offset,
int length,
String path,
ISVNDeltaConsumer consumer) |
void |
SVNDeltaReader.reset(String path,
ISVNDeltaConsumer consumer) |
Modifier and Type | Method and Description |
---|---|
protected ISVNDeltaConsumer |
DAVFileRevisionHandler.getDeltaConsumer() |
protected ISVNDeltaConsumer |
DAVEditorHandler.getDeltaConsumer() |
protected abstract ISVNDeltaConsumer |
BasicDAVDeltaHandler.getDeltaConsumer() |
Modifier and Type | Class and Description |
---|---|
class |
FSCommitEditor |
class |
FSDeltaConsumer |
class |
FSOutputStream |
Modifier and Type | Interface and Description |
---|---|
interface |
ISVNReusableEditor |
interface |
ISVNUpdateEditor |
Modifier and Type | Class and 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 |
Modifier and Type | Class and Description |
---|---|
class |
SVNAmbientDepthFilterEditor17 |
class |
SVNDiffEditor17 |
class |
SVNRemoteStatusEditor17 |
class |
SVNUpdateEditor17 |
Modifier and Type | Class and Description |
---|---|
class |
SvnExternalUpdateEditor |
Modifier and Type | Class and Description |
---|---|
class |
SvnDiffEditor |
class |
SvnNgRemoteDiffEditor |
class |
SvnNgRemoteDiffEditor2 |
class |
SvnNgRemoteMergeEditor |
Modifier and Type | Interface and 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.
|
Modifier and Type | Method and Description |
---|---|
void |
SVNDeltaGenerator.sendDelta(String path,
byte[] target,
int targetLength,
ISVNDeltaConsumer consumer)
Generates a series of diff windows of fixed size comparing
target bytes (read from
target stream) against an empty file, and sends produced windows to
the provided consumer. |
void |
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 comparing
targetLength of target bytes (read from target stream) against
sourceLength of source bytes (read from source stream at offset
sourceOffset ), and sends produced windows to the provided consumer . |
String |
SVNDeltaGenerator.sendDelta(String path,
InputStream target,
ISVNDeltaConsumer consumer,
boolean computeChecksum)
Generates a series of diff windows of fixed size comparing
target bytes (from
target stream) against an
empty file and sends produced windows to the provided
consumer. |
String |
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 from
target stream) against source
bytes (read from source stream), and sends produced windows to the provided
consumer. |
Modifier and Type | Class and 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.
|
Copyright © 2019. All rights reserved.