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,
java.lang.String path,
ISVNDeltaConsumer consumer) |
void |
SVNDeltaReader.reset(java.lang.String path,
ISVNDeltaConsumer consumer) |
Modifier and Type | Class and Description |
---|---|
(package private) class |
DAVCommitEditor |
Modifier and Type | Field and Description |
---|---|
private ISVNDeltaConsumer |
DAVEditorHandler.myDeltaConsumer |
Modifier and Type | Method and Description |
---|---|
protected ISVNDeltaConsumer |
DAVFileRevisionHandler.getDeltaConsumer() |
protected abstract ISVNDeltaConsumer |
BasicDAVDeltaHandler.getDeltaConsumer() |
protected ISVNDeltaConsumer |
DAVEditorHandler.getDeltaConsumer() |
Modifier and Type | Class and Description |
---|---|
class |
FSCommitEditor |
class |
FSDeltaConsumer |
class |
FSOutputStream |
Modifier and Type | Class and Description |
---|---|
(package private) class |
SVNCommitEditor |
Modifier and Type | Class and Description |
---|---|
private static class |
SVNMergeInfoUtil.ElideMergeInfoEditor |
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 |
private class |
SvnNgReposToWcCopy.SVNCopyForeignEditor |
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 | Class and Description |
---|---|
(package private) class |
SVNFileCheckoutEditor
The SVNFileCheckoutEditor is an adapter which only handles file contents and properties during a
checkout and redirects that information to its
ISVNFileCheckoutTarget handler. |
Modifier and Type | Method and Description |
---|---|
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 from
target stream) against an empty file, and sends produced windows to
the provided consumer. |
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 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 . |
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 (from
target 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 from
target stream) against source
bytes (read from source stream), and sends produced windows to the provided
consumer. |
private void |
SVNDeltaGenerator.sendDelta(java.lang.String path,
long sourceOffset,
byte[] source,
int sourceLength,
byte[] target,
int targetLength,
ISVNDeltaConsumer 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.
|