Package | Description |
---|---|
org.tigris.subversion.javahl |
Provides a (mostly native, using JNI and javah) implementation of
a high level Java API for
Subversion.
|
org.tmatesoft.svn.cli.svn | |
org.tmatesoft.svn.core |
This package mostly contains common classes as well as interfaces used
throughout all the library.
|
org.tmatesoft.svn.core.internal.io.dav | |
org.tmatesoft.svn.core.internal.io.dav.handlers | |
org.tmatesoft.svn.core.internal.io.fs | |
org.tmatesoft.svn.core.internal.io.svn | |
org.tmatesoft.svn.core.internal.wc | |
org.tmatesoft.svn.core.internal.wc.admin | |
org.tmatesoft.svn.core.internal.wc16 | |
org.tmatesoft.svn.core.internal.wc17 | |
org.tmatesoft.svn.core.internal.wc17.db | |
org.tmatesoft.svn.core.internal.wc17.db.statement | |
org.tmatesoft.svn.core.internal.wc2.ng | |
org.tmatesoft.svn.core.internal.wc2.old | |
org.tmatesoft.svn.core.internal.wc2.remote | |
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.javahl |
This package provides an implementation of the native Subversion javahl
binding interface SVNClientInterface that is distributed within
the org.tigris.subversion.javahl package.
|
org.tmatesoft.svn.core.javahl17 | |
org.tmatesoft.svn.core.wc |
This package provides a high-level API for managing Working Copies in a way
compatible with the native SVN command line client.
|
org.tmatesoft.svn.core.wc2 |
NEW: this package contains command-style API to perform most of
Subversion operations on the level of abstraction similar to that of the
command line client.
|
Modifier and Type | Method and Description |
---|---|
static SVNDepth |
JavaHLObjectFactory.getSVNDepth(int depth) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SVNLogCommand.myDepth |
private SVNDepth |
SVNCommandEnvironment.myDepth |
private SVNDepth |
SVNCommandEnvironment.mySetDepth |
Modifier and Type | Method and Description |
---|---|
SVNDepth |
SVNCommandEnvironment.getDepth() |
SVNDepth |
SVNCommandEnvironment.getSetDepth() |
Modifier and Type | Method and Description |
---|---|
private void |
SVNLogCommand.doDiff(SVNDiffClient client,
SVNLogEntry logEntry,
SVNPath target,
SVNDepth depth) |
Modifier and Type | Field and Description |
---|---|
static SVNDepth |
SVNDepth.EMPTY
Just the named directory D, no entries.
|
static SVNDepth |
SVNDepth.EXCLUDE
Exclude (don't descend into) directory D.
|
static SVNDepth |
SVNDepth.FILES
D and its file children, but not subdirectories.
|
static SVNDepth |
SVNDepth.IMMEDIATES
D and its immediate children (D and its entries).
|
static SVNDepth |
SVNDepth.INFINITY
D and all descendants (full recursion from D).
|
static SVNDepth |
SVNDepth.UNKNOWN
Depth undetermined or ignored.
|
Modifier and Type | Method and Description |
---|---|
static SVNDepth |
SVNDepth.fromID(int id)
Based on depth id returns
SVNDepth value. |
static SVNDepth |
SVNDepth.fromRecurse(boolean recurse)
Treats recursion as
INFINITY depth and FILES otherwise |
static SVNDepth |
SVNDepth.fromString(java.lang.String string)
Based on string value finds
SVNDepth value. |
static SVNDepth |
SVNDepth.getInfinityOrEmptyDepth(boolean recurse)
Returns
INFINITY if recurse is true , else
returns EMPTY . |
static SVNDepth |
SVNDepth.getInfinityOrFilesDepth(boolean recurse)
The same as
getInfinityOrEmptyDepth(boolean) , but FILES is returned when recursive. |
static SVNDepth |
SVNDepth.getInfinityOrImmediatesDepth(boolean recurse)
The same as
getInfinityOrEmptyDepth(boolean) , but IMMEDIATES is returned when recursive. |
static SVNDepth |
SVNDepth.getUnknownOrEmptyDepth(boolean recurse)
Returns
UNKNOWN if recurse is true , else
returns EMPTY . |
static SVNDepth |
SVNDepth.getUnknownOrFilesDepth(boolean recurse)
The same as
getUnknownOrEmptyDepth(boolean) , but FILES is returned when recursive. |
static SVNDepth |
SVNDepth.getUnknownOrImmediatesDepth(boolean recurse)
The same as
getUnknownOrEmptyDepth(boolean) , but IMMEDIATES is returned when recursive. |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
SVNDepth.asString(SVNDepth depth)
Appropriate name of
depth is returned. |
static boolean |
SVNDepth.recurseFromDepth(SVNDepth depth)
Based on depth determines if it is recursive or not.
|
Modifier and Type | Method and Description |
---|---|
void |
DAVRepository.diff(SVNURL url,
long targetRevision,
long revision,
java.lang.String target,
boolean ignoreAncestry,
SVNDepth depth,
boolean getContents,
ISVNReporterBaton reporter,
ISVNEditor editor) |
private void |
DAVRepository.runReport(SVNURL url,
long targetRevision,
java.lang.String target,
java.lang.String dstPath,
SVNDepth depth,
boolean ignoreAncestry,
boolean resourceWalk,
boolean fetchContents,
boolean sendCopyFromArgs,
boolean sendAll,
boolean closeEditorOnException,
boolean spool,
ISVNWorkingCopyContentMediator workingCopyContentMediator,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
DAVRepository.status(long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
DAVRepository.update(long revision,
java.lang.String target,
SVNDepth depth,
boolean sendCopyFromArgs,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
DAVRepository.update(SVNURL url,
long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor) |
Modifier and Type | Method and Description |
---|---|
static java.lang.StringBuffer |
DAVEditorHandler.generateEditorRequest(DAVConnection connection,
java.lang.StringBuffer xmlBuffer,
java.lang.String url,
long targetRevision,
java.lang.String target,
java.lang.String dstPath,
SVNDepth depth,
java.util.Map lockTokens,
boolean ignoreAncestry,
boolean resourceWalk,
boolean fetchContents,
boolean sendCopyFromArgs,
boolean sendAll,
ISVNReporterBaton reporterBaton) |
Modifier and Type | Field and Description |
---|---|
(package private) SVNDepth |
PathInfo.myDepth |
private SVNDepth |
FSUpdateContext.myDepth |
Modifier and Type | Method and Description |
---|---|
SVNDepth |
PathInfo.getDepth() |
private SVNDepth |
FSUpdateContext.getDepthBelow(SVNDepth depth) |
Modifier and Type | Method and Description |
---|---|
FSTranslateReporter |
FSRepository.beginReport(long revision,
SVNURL url,
java.lang.String target,
boolean ignoreAncestry,
boolean sendTextDeltas,
boolean sendCopyFromArgs,
SVNDepth depth,
ISVNEditor editor) |
void |
FSRepository.diff(SVNURL url,
long targetRevision,
long revision,
java.lang.String target,
boolean ignoreAncestry,
SVNDepth depth,
boolean getContents,
ISVNReporterBaton reporter,
ISVNEditor editor) |
private void |
FSUpdateContext.diffDirs(long sourceRevision,
java.lang.String sourcePath,
java.lang.String targetPath,
java.lang.String editPath,
boolean startEmpty,
SVNDepth wcDepth,
SVNDepth requestedDepth) |
private SVNDepth |
FSUpdateContext.getDepthBelow(SVNDepth depth) |
java.lang.String |
FSUpdateContext.getDepthLetter(SVNDepth depth) |
private boolean |
FSUpdateContext.isDepthUpgrade(SVNDepth wcDepth,
SVNDepth requestedDepth,
SVNNodeKind kind) |
void |
FSRepository.linkPath(SVNURL url,
java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
void |
FSTranslateReporter.linkPath(SVNURL url,
java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
private void |
FSRepository.makeReporterContext(long targetRevision,
java.lang.String target,
SVNURL switchURL,
SVNDepth depth,
boolean ignoreAncestry,
boolean textDeltas,
boolean sendCopyFromArgs,
ISVNEditor editor) |
void |
FSUpdateContext.reset(FSRepository repository,
FSFS owner,
long revision,
java.io.File reportFile,
java.lang.String target,
java.lang.String targetPath,
boolean isSwitch,
SVNDepth depth,
boolean ignoreAncestry,
boolean textDeltas,
boolean sendCopyFrom,
ISVNEditor editor) |
void |
FSRepository.setPath(java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
void |
FSTranslateReporter.setPath(java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
void |
FSRepository.status(long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
FSRepository.update(long revision,
java.lang.String target,
SVNDepth depth,
boolean sendCopyFromArgs,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
FSRepository.update(SVNURL url,
long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor) |
private void |
FSUpdateContext.updateEntry(long sourceRevision,
java.lang.String sourcePath,
FSEntry sourceEntry,
java.lang.String targetPath,
FSEntry targetEntry,
java.lang.String editPath,
PathInfo pathInfo,
SVNDepth wcDepth,
SVNDepth requestedDepth) |
void |
FSUpdateContext.writePathInfoToReportFile(java.lang.String path,
java.lang.String linkPath,
java.lang.String lockToken,
long revision,
boolean startEmpty,
SVNDepth depth) |
Constructor and Description |
---|
FSUpdateContext(FSRepository repository,
FSFS owner,
long revision,
java.io.File reportFile,
java.lang.String target,
java.lang.String targetPath,
boolean isSwitch,
SVNDepth depth,
boolean ignoreAncestry,
boolean textDeltas,
boolean sendCopyFromArgs,
ISVNEditor editor) |
PathInfo(java.lang.String path,
java.lang.String linkPath,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean empty) |
Modifier and Type | Method and Description |
---|---|
void |
SVNRepositoryImpl.diff(SVNURL url,
long targetRevision,
long revision,
java.lang.String target,
boolean ignoreAncestry,
SVNDepth depth,
boolean getContents,
ISVNReporterBaton reporter,
ISVNEditor editor) |
private ISVNEditor |
SVNRepositoryImpl.getDepthFilterEditor(ISVNEditor editor,
SVNDepth depth,
boolean hasTarget) |
private static boolean |
SVNRepositoryImpl.getRecurseFromDepth(SVNDepth depth) |
void |
SVNRepositoryImpl.linkPath(SVNURL url,
java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
void |
SVNRepositoryImpl.setPath(java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
void |
SVNRepositoryImpl.status(long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
SVNRepositoryImpl.update(long revision,
java.lang.String target,
SVNDepth depth,
boolean sendCopyFromArgs,
ISVNReporterBaton reporter,
ISVNEditor editor) |
void |
SVNRepositoryImpl.update(SVNURL url,
long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor) |
Modifier and Type | Field and Description |
---|---|
SVNDepth |
SVNUpdateEditor15.SVNDirectoryInfo.myAmbientDepth |
(package private) SVNDepth |
SVNAmbientDepthFilterEditor.DirBaton.myAmbientDepth |
SVNDepth |
SVNUpdateEditor.SVNDirectoryInfo.myAmbientDepth |
private SVNDepth |
SVNAdminDeltifier.myDepth |
private SVNDepth |
SVNStatusEditor.myDepth |
private SVNDepth |
SVNDiffEditor.myDepth |
private SVNDepth |
SVNDiffEditor.SVNDirectoryInfo.myDepth |
private SVNDepth |
SVNMergeDriver.MergeInfoFetcher.myDepth |
SVNDepth |
SVNRemoteStatusEditor.DirectoryInfo.myDepth |
private SVNDepth |
SVNDepthFilterEditor.myRequestedDepth |
private SVNDepth |
SVNUpdateEditor15.myRequestedDepth |
private SVNDepth |
SVNUpdateEditor.myRequestedDepth |
Modifier and Type | Method and Description |
---|---|
protected SVNDepth |
SVNStatusEditor.getDepth() |
Modifier and Type | Method and Description |
---|---|
static void |
SVNWCManager.add(java.io.File path,
SVNAdminArea parentDir,
SVNURL copyFromURL,
long copyFromRev,
SVNDepth depth) |
static void |
SVNWCManager.add(java.io.File path,
SVNAdminArea parentDir,
SVNURL copyFromURL,
SVNRevision copyFromRev,
SVNDepth depth) |
private void |
SVNMergeDriver.calculateMergeInheritance(SVNMergeRangeList rangeList,
SVNEntry entry,
boolean wcPathIsMergeTarget,
boolean wcPathHasMissingChild,
SVNDepth depth) |
static SVNWCAccess |
SVNCommitUtil.createCommitWCAccess(java.io.File[] paths,
SVNDepth depth,
boolean force,
java.util.Collection relativePaths,
SVNStatusClient16 statusClient) |
static SVNWCAccess[] |
SVNCommitUtil.createCommitWCAccess2(java.io.File[] paths,
SVNDepth depth,
boolean force,
java.util.Map relativePathsMap,
SVNStatusClient16 statusClient) |
private SVNDiffEditor.SVNDirectoryInfo |
SVNDiffEditor.createDirInfo(SVNDiffEditor.SVNDirectoryInfo parent,
java.lang.String path,
boolean added,
SVNDepth depth) |
static SVNUpdateEditor15 |
SVNUpdateEditor15.createUpdateEditor(SVNAdminAreaInfo info,
java.lang.String switchURL,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExtensions,
ISVNFileFetcher fileFetcher,
boolean lockOnDemand) |
static SVNUpdateEditor |
SVNUpdateEditor.createUpdateEditor(SVNAdminAreaInfo info,
java.lang.String switchURL,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExtensions,
ISVNFileFetcher fileFetcher,
boolean lockOnDemand) |
static void |
SVNWCManager.crop(SVNAdminAreaInfo info,
SVNDepth depth) |
private static void |
SVNWCManager.cropChildren(SVNWCAccess wcAccess,
java.io.File path,
SVNDepth depth) |
protected void |
SVNMergeDriver.doDirectoryMerge(java.util.Map resultCatalog,
SVNURL url1,
long revision1,
SVNURL url2,
long revision2,
SVNEntry parentEntry,
SVNAdminArea adminArea,
SVNDepth depth) |
protected void |
SVNMergeDriver.doDirectoryMerge(SVNURL url1,
long revision1,
SVNURL url2,
long revision2,
SVNEntry parentEntry,
SVNAdminArea adminArea,
SVNDepth depth)
Deprecated.
|
protected void |
SVNMergeDriver.doMerge(java.util.Map resultCatalog,
java.util.List mergeSources,
java.io.File target,
SVNEntry targetEntry,
SVNAdminArea adminArea,
boolean sourcesAncestral,
boolean sourcesRelated,
boolean sameRepository,
boolean ignoreAncestry,
boolean force,
boolean dryRun,
boolean recordOnly,
boolean reintegrateMerge,
SVNDepth depth) |
protected void |
SVNMergeDriver.doMergeInfoUnawareDirectoryMerge(SVNURL url1,
long revision1,
SVNURL url2,
long revision2,
SVNAdminArea adminArea,
SVNDepth depth) |
ISVNReusableEditor |
SVNMergeDriver.driveMergeReportEditor(java.io.File targetWCPath,
SVNURL url1,
long revision1,
SVNURL url2,
long revision2,
java.util.List childrenWithMergeInfo,
boolean isRollBack,
SVNDepth depth,
SVNAdminArea adminArea,
SVNMergeCallback mergeCallback,
ISVNReusableEditor editor) |
ISVNReusableEditor |
ISVNMergeStrategy.driveMergeReportEditor(java.io.File targetWCPath,
SVNURL url1,
long revision1,
SVNURL url2,
long revision2,
java.util.List childrenWithMergeInfo,
boolean isRollBack,
SVNDepth depth,
SVNAdminArea adminArea,
SVNMergeCallback mergeCallback,
ISVNReusableEditor editor) |
static boolean |
SVNWCManager.ensureAdminAreaExists(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revision,
SVNDepth depth) |
static ISVNEditor |
SVNDepthFilterEditor.getDepthFilterEditor(SVNDepth requestedDepth,
ISVNEditor delegate,
boolean hasTarget) |
protected void |
SVNStatusEditor.getDirStatus(SVNEntry parentEntry,
SVNAdminArea dir,
java.lang.String entryName,
SVNDepth depth,
boolean getAll,
boolean noIgnore,
java.util.Collection ignorePatterns,
boolean skipThisDir,
ISVNStatusHandler handler) |
ISVNEntryHandler |
SVNMergeDriver.getMergeInfoEntryHandler(java.lang.String mergeSrcPath,
SVNURL sourceRootURL,
long revision1,
long revision2,
SVNRepository repository,
SVNDepth depth,
java.util.List childrenWithMergeInfo) |
ISVNEntryHandler |
ISVNMergeStrategy.getMergeInfoEntryHandler(java.lang.String mergeSrcPath,
SVNURL sourceRootURL,
long revision1,
long revision2,
SVNRepository repository,
SVNDepth depth,
java.util.List childrenWithMergeInfo) |
private java.util.List |
SVNMergeDriver.getMergeInfoPaths(java.util.List children,
java.lang.String mergeSrcPath,
SVNEntry entry,
SVNURL sourceRootURL,
long revision1,
long revision2,
boolean honorMergeInfo,
SVNRepository repository,
SVNDepth depth) |
ISVNReusableEditor |
SVNMergeDriver.getMergeReportEditor(long defaultStart,
long revision,
SVNAdminArea adminArea,
SVNDepth depth,
AbstractDiffCallback mergeCallback,
ISVNReusableEditor editor) |
ISVNReusableEditor |
ISVNMergeStrategy.getMergeReportEditor(long defaultStart,
long revision,
SVNAdminArea adminArea,
SVNDepth depth,
AbstractDiffCallback mergeCallback,
ISVNReusableEditor editor) |
static java.util.Map |
SVNPropertiesManager.getWorkingCopyPropertyValues(java.io.File path,
SVNEntry entry,
java.lang.String propName,
SVNDepth depth,
boolean base) |
private void |
SVNStatusEditor.handleDirEntry(SVNAdminArea dir,
java.lang.String entryName,
SVNEntry dirEntry,
SVNEntry entry,
SVNNodeKind fileKind,
boolean special,
SVNDepth depth,
boolean getAll,
boolean noIgnore,
ISVNStatusHandler handler) |
private void |
SVNRemoteStatusEditor.handleStatusHash(SVNEntry dirEntry,
java.util.Map hash,
boolean deleted,
SVNDepth depth) |
static void |
SVNCommitUtil.harvestCommitables(java.util.Map commitables,
SVNAdminArea dir,
java.io.File path,
SVNEntry parentEntry,
SVNEntry entry,
java.lang.String url,
java.lang.String copyFromURL,
boolean copyMode,
boolean addsOnly,
boolean justLocked,
java.util.Map lockTokens,
SVNDepth depth,
boolean forcedRecursion,
java.util.Collection changelists,
ISVNCommitParameters params,
java.util.Map pathsToExternalsProperties) |
static SVNCommitItem[] |
SVNCommitUtil.harvestCommitables(SVNWCAccess baseAccess,
java.util.Collection paths,
java.util.Map lockTokens,
boolean justLocked,
SVNDepth depth,
boolean force,
java.util.Collection changelists,
ISVNCommitParameters params) |
void |
SVNStatusReporter.linkPath(SVNURL url,
java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
private void |
SVNMergeDriver.mergeCousinsAndSupplementMergeInfo(java.io.File targetWCPath,
SVNEntry entry,
SVNAdminArea adminArea,
SVNRepository repository1,
SVNRepository repository2,
SVNURL url1,
long rev1,
SVNURL url2,
long rev2,
long youngestCommonRev,
SVNURL sourceReposRoot,
SVNURL wcReposRoot,
SVNDepth depth,
boolean ignoreAncestry,
boolean force,
boolean recordOnly,
boolean dryRun) |
protected void |
SVNMergeDriver.recordMergeInfoForAddedSubtrees(SVNMergeRange range,
java.lang.String mergeInfoPath,
SVNDepth depth) |
protected void |
SVNMergeDriver.recordMergeInfoForDirectoryMerge(java.util.Map resultCatalog,
SVNEntry targetEntry,
SVNMergeRange range,
java.lang.String mergeInfoPath,
SVNDepth depth) |
protected void |
SVNMergeDriver.runMerge(SVNURL url1,
SVNRevision revision1,
SVNURL url2,
SVNRevision revision2,
java.io.File targetWCPath,
SVNDepth depth,
boolean dryRun,
boolean force,
boolean ignoreAncestry,
boolean recordOnly) |
protected void |
SVNMergeDriver.runPeggedMerge(SVNURL srcURL,
java.io.File srcPath,
java.util.Collection rangesToMerge,
SVNRevision pegRevision,
java.io.File targetWCPath,
SVNDepth depth,
boolean dryRun,
boolean force,
boolean ignoreAncestry,
boolean recordOnly) |
void |
SVNStatusReporter.setPath(java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
private static void |
SVNWCManager.tweakEntries(SVNAdminArea dir,
java.lang.String baseURL,
java.lang.String rootURL,
long newRevision,
boolean removeMissingDirs,
java.util.Collection excludePaths,
SVNDepth depth,
boolean skipUnlocked) |
static void |
SVNWCManager.updateCleanup(java.io.File path,
SVNWCAccess wcAccess,
java.lang.String baseURL,
java.lang.String rootURL,
long newRevision,
boolean removeMissingDirs,
java.util.Collection excludePaths,
SVNDepth depth,
boolean skipUnlocked) |
Constructor and Description |
---|
MergeInfoFetcher(SVNDepth depth,
java.util.List childrenWithMergeInfo) |
SVNAdminDeltifier(FSFS fsfs,
SVNDepth depth,
boolean includeEntryProperties,
boolean ignoreAncestry,
boolean sendTextDeltas,
ISVNEditor editor) |
SVNDepthFilterEditor(SVNDepth depth,
ISVNEditor delegate,
boolean hasTarget) |
SVNDiffEditor(SVNWCAccess wcAccess,
SVNAdminAreaInfo info,
AbstractDiffCallback callback,
boolean useAncestry,
boolean reverseDiff,
boolean compareToBase,
SVNDepth depth,
java.util.Collection changeLists) |
SVNRemoteStatusEditor(ISVNOptions options,
SVNWCAccess wcAccess,
SVNAdminAreaInfo info,
boolean noIgnore,
boolean reportAll,
SVNDepth depth,
ISVNStatusHandler handler) |
SVNStatusEditor(ISVNOptions options,
SVNWCAccess wcAccess,
SVNAdminAreaInfo info,
boolean noIgnore,
boolean reportAll,
SVNDepth depth,
ISVNStatusHandler handler) |
SVNUpdateEditor(SVNAdminAreaInfo info,
java.lang.String switchURL,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExtensions,
java.lang.String targetURL,
java.lang.String rootURL,
ISVNFileFetcher fileFetcher,
boolean lockOnDemand) |
SVNUpdateEditor15(SVNAdminAreaInfo info,
java.lang.String switchURL,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExtensions,
java.lang.String targetURL,
java.lang.String rootURL,
ISVNFileFetcher fileFetcher,
boolean lockOnDemand) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SVNEntry.depth |
private SVNDepth |
SVNWCAccess.TCEntryHandler.myDepth |
private SVNDepth |
SVNReporter.myDepth |
Modifier and Type | Method and Description |
---|---|
SVNDepth |
SVNEntry.getDepth() |
Modifier and Type | Method and Description |
---|---|
void |
SVNAdminAreaInfo.addDepth(java.lang.String path,
SVNDepth depth) |
ISVNUpdateEditor |
SVNWCAccess.createUpdateEditor(SVNAdminAreaInfo info,
java.lang.String switchURL,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExtensions,
ISVNFileFetcher fileFetcher,
boolean lockOnDemand) |
abstract SVNAdminArea |
SVNAdminArea.createVersionedDirectory(java.io.File dir,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
boolean createMyself,
SVNDepth depth) |
SVNAdminArea |
SVNAdminArea14.createVersionedDirectory(java.io.File dir,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
boolean createMyself,
SVNDepth depth) |
SVNAdminArea |
SVNXMLAdminArea.createVersionedDirectory(java.io.File dir,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
boolean createMyself,
SVNDepth depth) |
static void |
SVNAdminAreaFactory.createVersionedDirectory(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
static void |
SVNAdminAreaFactory.createVersionedDirectory(java.io.File path,
SVNURL url,
SVNURL rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
protected void |
SVNXMLAdminAreaFactory.doCreateVersionedDirectory(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
protected abstract void |
SVNAdminAreaFactory.doCreateVersionedDirectory(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
protected void |
SVNAdminArea15Factory.doCreateVersionedDirectory(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
protected void |
SVNAdminArea14Factory.doCreateVersionedDirectory(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
protected void |
SVNAdminArea16Factory.doCreateVersionedDirectory(java.io.File path,
java.lang.String url,
java.lang.String rootURL,
java.lang.String uuid,
long revNumber,
SVNDepth depth) |
private void |
SVNReporter.reportEntries(ISVNReporter reporter,
SVNAdminArea adminArea,
java.lang.String dirPath,
long dirRevision,
boolean reportAll,
SVNDepth depth) |
void |
SVNEntry.setDepth(SVNDepth depth) |
void |
SVNWCAccess.walkEntries(java.io.File path,
ISVNEntryHandler handler,
boolean showHidden,
boolean includeTC,
SVNDepth depth) |
void |
SVNWCAccess.walkEntries(java.io.File path,
ISVNEntryHandler handler,
boolean showHidden,
SVNDepth depth) |
void |
SVNAdminArea.walkThisDirectory(ISVNEntryHandler handler,
boolean showHidden,
SVNDepth depth) |
Constructor and Description |
---|
SVNReporter(SVNAdminAreaInfo info,
java.io.File file,
boolean restoreFiles,
boolean useDepthCompatibilityTrick,
SVNDepth depth,
boolean lockOnDemand,
boolean isStatus,
boolean isHonorDepthExclude,
ISVNDebugLog log) |
TCEntryHandler(java.io.File target,
SVNWCAccess wcAccess,
ISVNEntryHandler delegate,
SVNDepth depth) |
Modifier and Type | Method and Description |
---|---|
private void |
SVNWCClient16.addDirectory(java.io.File wcRoot,
java.io.File path,
SVNAdminArea parentDir,
boolean force,
boolean noIgnore,
SVNDepth depth,
boolean setDepth) |
void |
SVNChangelistClient16.addToChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String changelist,
java.lang.String[] changelists)
Deprecated.
|
private void |
SVNUpdateClient16.copyVersionedDir(java.io.File from,
java.io.File to,
SVNRevision revision,
java.lang.String eolStyle,
boolean force,
SVNDepth depth) |
private void |
SVNWCClient16.crawlEntries(java.io.File path,
SVNDepth depth,
java.util.Collection changeLists,
ISVNInfoHandler handler) |
void |
SVNWCClient16.doAdd(java.io.File[] paths,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean depthIsSticky,
boolean includeIgnored,
boolean makeParents)
Schedules working copy
paths for addition to the repository. |
void |
SVNWCClient16.doAdd(java.io.File path,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean includeIgnored,
boolean makeParents)
Schedules a working copy
path for addition to the
repository. |
void |
SVNWCClient16.doAdd(java.io.File path,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean depthIsSticky,
boolean includeIgnored,
boolean makeParents)
Schedules a working copy
path for addition to the
repository. |
void |
SVNChangelistClient16.doAddToChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String changelist,
java.lang.String[] changelists)
Adds each path in
paths (recursing to depth as
necessary) to changelist . |
long |
SVNUpdateClient16.doCheckout(SVNURL url,
java.io.File dstPath,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions)
Checks out a working copy of
url at revision ,
looked up at pegRevision , using dstPath as the
root directory of the newly checked out working copy. |
SVNCommitPacket[] |
SVNCommitClient16.doCollectCommitItems(java.io.File[] paths,
boolean keepLocks,
boolean force,
SVNDepth depth,
boolean combinePackets,
java.lang.String[] changelists)
Collects commit items (containing detailed information on each Working
Copy item that was changed and need to be committed to the repository)
into different
SVNCommitPacket s. |
SVNCommitPacket |
SVNCommitClient16.doCollectCommitItems(java.io.File[] paths,
boolean keepLocks,
boolean force,
SVNDepth depth,
java.lang.String[] changelists)
Collects commit items (containing detailed information on each Working
Copy item that contains changes and need to be committed to the
repository) into a single
SVNCommitPacket . |
SVNCommitInfo |
SVNCommitClient16.doCommit(java.io.File[] paths,
boolean keepLocks,
java.lang.String commitMessage,
SVNProperties revisionProperties,
java.lang.String[] changelists,
boolean keepChangelist,
boolean force,
SVNDepth depth)
Commits files or directories into repository.
|
void |
SVNDiffClient16.doDiff(java.io.File[] paths,
SVNRevision rN,
SVNRevision rM,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists)
Iterates over the passed in
paths calling
SVNDiffClient16.doDiff(File,SVNRevision,SVNRevision,SVNRevision,SVNDepth,boolean,OutputStream,Collection)
for each one in the array. |
void |
SVNDiffClient16.doDiff(java.io.File path1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists)
Produces diff output which describes the delta between
path1
/rN and path2 /rM . |
void |
SVNDiffClient16.doDiff(java.io.File path,
SVNRevision pegRevision,
SVNRevision rN,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists)
Produces diff output which describes the delta between
path
in peg revision pegRevision , as it changed between
rN and rM . |
void |
SVNDiffClient16.doDiff(java.io.File path1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists)
Produces diff output which describes the delta between
path1
/rN and url2 /rM . |
void |
SVNDiffClient16.doDiff(SVNURL url1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists)
Produces diff output which describes the delta between
url1 /
rN and path2 /rM . |
void |
SVNDiffClient16.doDiff(SVNURL url,
SVNRevision pegRevision,
SVNRevision rN,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result)
Produces diff output which describes the delta between
url
in peg revision pegRevision , as it changed between
rN and rM . |
void |
SVNDiffClient16.doDiff(SVNURL url1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result)
Produces diff output which describes the delta between
url1 /
rN and url2 /rM . |
void |
SVNDiffClient16.doDiffStatus(java.io.File path1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
path1 /rN and path2 /rM
without creating text deltas. |
void |
SVNDiffClient16.doDiffStatus(java.io.File path,
SVNRevision rN,
SVNRevision rM,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
path in peg revision pegRevision , as it changed
between rN and rM . |
void |
SVNDiffClient16.doDiffStatus(java.io.File path1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
path1 /rN and url2 /rM
without creating text deltas. |
void |
SVNDiffClient16.doDiffStatus(SVNURL url1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
url1 /rN and path2 /rM
without creating text deltas. |
void |
SVNDiffClient16.doDiffStatus(SVNURL url,
SVNRevision rN,
SVNRevision rM,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
url in peg revision pegRevision , as it changed
between rN and rM . |
void |
SVNDiffClient16.doDiffStatus(SVNURL url1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
url1 /rN and url2 /rM
without creating text deltas. |
private void |
SVNDiffClient16.doDiffURLURL(SVNURL url1,
java.io.File path1,
SVNRevision revision1,
SVNURL url2,
java.io.File path2,
SVNRevision revision2,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
private void |
SVNDiffClient16.doDiffURLURL(SVNURL url1,
java.io.File path1,
SVNRevision revision1,
SVNURL url2,
java.io.File path2,
SVNRevision revision2,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result) |
private void |
SVNDiffClient16.doDiffURLWC(java.io.File path1,
SVNRevision revision1,
SVNRevision pegRevision,
java.io.File path2,
SVNRevision revision2,
boolean reverse,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists) |
private void |
SVNDiffClient16.doDiffURLWC(SVNURL url1,
SVNRevision revision1,
SVNRevision pegRevision,
java.io.File path2,
SVNRevision revision2,
boolean reverse,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists) |
private void |
SVNDiffClient16.doDiffWCWC(java.io.File path1,
SVNRevision revision1,
java.io.File path2,
SVNRevision revision2,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection changeLists) |
long |
SVNUpdateClient16.doExport(java.io.File srcPath,
java.io.File dstPath,
SVNRevision pegRevision,
SVNRevision revision,
java.lang.String eolStyle,
boolean overwrite,
SVNDepth depth)
Exports the contents of either a subversion repository or a subversion
working copy into a 'clean' directory (meaning a directory with no
administrative directories).
|
long |
SVNUpdateClient16.doExport(SVNURL url,
java.io.File dstPath,
SVNRevision pegRevision,
SVNRevision revision,
java.lang.String eolStyle,
boolean overwrite,
SVNDepth depth)
Exports the contents of a subversion repository into a 'clean' directory
(meaning a directory with no administrative directories).
|
void |
SVNChangelistClient16.doGetChangeListPaths(java.util.Collection changeLists,
java.util.Collection targets,
SVNDepth depth,
ISVNChangelistHandler handler)
Gets paths belonging to the specified changelists discovered under the
specified targets.
|
void |
SVNChangelistClient16.doGetChangeLists(java.io.File path,
java.util.Collection changeLists,
SVNDepth depth,
ISVNChangelistHandler handler)
Gets paths belonging to the specified changelists discovered under the
specified path.
|
private void |
SVNWCClient16.doGetLocalProperty(SVNEntry entry,
SVNAdminArea area,
java.lang.String propName,
boolean base,
ISVNPropertyHandler handler,
SVNDepth depth,
java.util.Collection changeLists) |
void |
SVNWCClient16.doGetProperty(java.io.File path,
java.lang.String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler,
java.util.Collection changeLists)
Invokes
handler on paths covered by depth
starting with the specified path . |
void |
SVNWCClient16.doGetProperty(SVNURL url,
java.lang.String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler)
Invokes
handler on paths covered by depth
starting with the specified path . |
private void |
SVNWCClient16.doGetRemoteProperty(SVNURL url,
java.lang.String path,
SVNRepository repos,
java.lang.String propName,
SVNRevision rev,
SVNDepth depth,
ISVNPropertyHandler handler) |
SVNCommitInfo |
SVNCommitClient16.doImport(java.io.File path,
SVNURL dstURL,
java.lang.String commitMessage,
SVNProperties revisionProperties,
boolean useGlobalIgnores,
boolean ignoreUnknownNodeTypes,
SVNDepth depth)
Imports file or directory
path into repository directory
dstURL at HEAD revision. |
SVNCommitInfo |
SVNCommitClient16.doImport(java.io.File path,
SVNURL dstURL,
java.lang.String commitMessage,
SVNProperties revisionProperties,
boolean useGlobalIgnores,
boolean ignoreUnknownNodeTypes,
SVNDepth depth,
boolean applyAutoProperties)
Imports file or directory
path into repository directory
dstURL at HEAD revision. |
SVNCommitInfo |
SVNCommitClient16.doImport(java.io.File path,
SVNURL dstURL,
java.lang.String commitMessage,
SVNProperties revisionProperties,
boolean useGlobalIgnores,
boolean ignoreUnknownNodeTypes,
SVNDepth depth,
boolean applyAutoProperties,
ISVNFileFilter fileFilter)
Imports file or directory
path into repository directory
dstURL at HEAD revision. |
void |
SVNWCClient16.doInfo(java.io.File path,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
java.util.Collection changeLists,
ISVNInfoHandler handler)
Invokes
handler to return information about
path in revision . |
void |
SVNWCClient16.doInfo(SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNInfoHandler handler)
Invokes
handler to return information about url
in revision . |
void |
SVNLogClient16.doList(java.io.File path,
SVNRevision pegRevision,
SVNRevision revision,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler)
Reports the directory entry, and possibly children, for
path
at revision . |
private void |
SVNLogClient16.doList(SVNRepository repos,
long rev,
ISVNDirEntryHandler handler,
boolean fetchLocks,
SVNDepth depth,
int entryFields) |
void |
SVNLogClient16.doList(SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler)
Reports the directory entry, and possibly children, for
url
at revision . |
void |
SVNDiffClient16.doMerge(java.io.File path1,
SVNRevision pegRevision,
java.util.Collection rangesToMerge,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges the changes between
path1 in peg revision
pegRevision , as it changed between the ranges described in
rangesToMerge . |
void |
SVNDiffClient16.doMerge(java.io.File path1,
SVNRevision revision1,
java.io.File path2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
path1 /revision1 to
path2 /revision2 into the working-copy path
dstPath . |
void |
SVNDiffClient16.doMerge(java.io.File path1,
SVNRevision revision1,
SVNURL url2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
path1 /revision1 to
url2 /revision2 into the working-copy path
dstPath . |
void |
SVNDiffClient16.doMerge(SVNURL url1,
SVNRevision pegRevision,
java.util.Collection rangesToMerge,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges the changes between
url1 in peg revision
pegRevision , as it changed between the ranges described in
rangesToMerge . |
void |
SVNDiffClient16.doMerge(SVNURL url1,
SVNRevision revision1,
java.io.File path2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
url1 /revision1 to
path2 /revision2 into the working-copy path
dstPath . |
void |
SVNDiffClient16.doMerge(SVNURL url1,
SVNRevision revision1,
SVNURL url2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
url1 /revision1 to
url2 /revision2 into the working-copy path
dstPath . |
private long |
SVNUpdateClient16.doRemoteExport(SVNRepository repository,
long revNumber,
java.io.File dstPath,
java.lang.String eolStyle,
boolean force,
SVNDepth depth) |
void |
SVNChangelistClient16.doRemoveFromChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String[] changelists)
Removes each path in
paths (recursing to depth
as necessary) from changelists to which they are currently assigned. |
void |
SVNWCClient16.doResolve(java.io.File path,
SVNDepth depth,
boolean resolveContents,
boolean resolveProperties,
boolean resolveTree,
SVNConflictChoice conflictChoice)
Performs automatic conflict resolution on a working copy
path . |
void |
SVNWCClient16.doResolve(java.io.File path,
SVNDepth depth,
boolean resolveContents,
boolean resolveProperties,
SVNConflictChoice conflictChoice)
Performs automatic conflict resolution on a working copy
path . |
void |
SVNWCClient16.doResolve(java.io.File path,
SVNDepth depth,
SVNConflictChoice conflictChoice)
Performs automatic conflict resolution on a working copy
path . |
void |
SVNWCClient16.doRevert(java.io.File[] paths,
SVNDepth depth,
java.util.Collection changeLists)
Restores the pristine version of working copy
paths ,
effectively undoing any local mods. |
private boolean |
SVNWCClient16.doRevert(java.io.File path,
SVNAdminArea parent,
SVNDepth depth,
boolean useCommitTimes,
java.util.Collection changeLists) |
void |
SVNWCClient16.doSetProperty(java.io.File path,
ISVNPropertyValueProvider propertyValueProvider,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
java.util.Collection changeLists)
Crawls the working copy at
path and calls
ISVNPropertyValueProvider.providePropertyValues(java.io.File,org.tmatesoft.svn.core.SVNProperties)
to get properties to be change on each path being traversed
If depth is EMPTY ,
change the properties on path only; if
FILES , change the properties on path and
its file children (if any); if IMMEDIATES , on
path and all of its immediate children (both files and
directories); ifINFINITY , on path and
everything beneath it. |
void |
SVNWCClient16.doSetProperty(java.io.File path,
java.lang.String propName,
SVNPropertyValue propValue,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
java.util.Collection changeLists)
Sets
propName to propValue on path
. |
long |
SVNStatusClient16.doStatus(java.io.File path,
SVNRevision revision,
SVNDepth depth,
boolean remote,
boolean reportAll,
boolean includeIgnored,
boolean collectParentExternals,
ISVNStatusHandler handler,
java.util.Collection changeLists)
Given a
path to a working copy directory (or single file),
calls handler with a set of SVNStatus objects which
describe the status of the path , and its children (recursing
according to depth ). |
long |
SVNUpdateClient16.doSwitch(java.io.File path,
SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky)
Switches working tree
path to url \
pegRevision at revision . |
private long |
SVNUpdateClient16.doSwitchImpl(SVNWCAccess wcAccess,
java.io.File path,
SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky) |
long[] |
SVNUpdateClient16.doUpdate(java.io.File[] paths,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky)
Updates working trees
paths to revision . |
long |
SVNUpdateClient16.doUpdate(java.io.File path,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky)
Updates working copy
to revision . |
private int |
SVNDiffClient16.getAdminDepth(SVNDepth depth) |
void |
SVNChangelistClient16.getChangeListPaths(java.util.Collection changeLists,
java.util.Collection targets,
SVNDepth depth,
ISVNChangelistHandler handler)
Deprecated.
|
void |
SVNChangelistClient16.getChangeLists(java.io.File path,
java.util.Collection changeLists,
SVNDepth depth,
ISVNChangelistHandler handler)
Deprecated.
|
protected int |
SVNBasicDelegate.getLevelsToLockFromDepth(SVNDepth depth) |
private void |
SVNUpdateClient16.handleExternals(SVNWCAccess wcAccess,
java.io.File root,
java.util.Map oldExternals,
java.util.Map newExternals,
java.util.Map depths,
SVNURL fromURL,
SVNURL rootURL,
SVNDepth requestedDepth,
boolean isExport,
boolean updateUnchanged) |
private boolean |
SVNCommitClient16.importDir(SVNDeltaGenerator deltaGenerator,
java.io.File dir,
java.lang.String importPath,
boolean useGlobalIgnores,
boolean ignoreUnknownNodeTypes,
SVNDepth depth,
java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.String>> versionedAutoProperties,
ISVNFileFilter fileFilter,
ISVNEditor editor) |
private static void |
SVNLogClient16.list(SVNRepository repository,
java.lang.String path,
long rev,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler) |
private void |
SVNWCClient16.pushDirInfo(SVNRepository repos,
SVNRevision rev,
java.lang.String path,
SVNURL root,
java.lang.String uuid,
SVNURL url,
java.util.Map locks,
SVNDepth depth,
ISVNInfoHandler handler) |
void |
SVNChangelistClient16.removeFromChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String[] changelists)
Deprecated.
|
private void |
SVNChangelistClient16.setChangelist(java.io.File[] paths,
java.lang.String changelistName,
java.lang.String[] changelists,
SVNDepth depth) |
private long |
SVNUpdateClient16.update(java.io.File path,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
boolean sendCopyFrom) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SVNUpdateEditor17.DirectoryBaton.ambientDepth |
private SVNDepth |
SVNReporter17.depth |
private SVNDepth |
SVNDiffEditor17.depth |
private SVNDepth |
SVNDiffEditor17.SVNDirectoryInfo.depth |
SVNDepth |
SVNAmbientDepthFilterEditor17.AmbientReadInfo.depth |
private SVNDepth |
SVNRemoteStatusEditor17.DirectoryInfo.depth |
(package private) SVNDepth |
SVNAmbientDepthFilterEditor17.DirBaton.myAmbientDepth |
protected SVNDepth |
SVNStatusEditor17.myDepth |
private SVNDepth |
SVNUpdateEditor17.myRequestedDepth |
SVNDepth |
SVNWCContext.ObstructionData.parentDepth |
Modifier and Type | Method and Description |
---|---|
SVNDepth |
SVNStatusEditor17.getDepth() |
SVNDepth |
SVNWCContext.getNodeDepth(java.io.File localAbsPath) |
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.io.File,SVNDepth> |
SVNExternalsStore.getDepths() |
Modifier and Type | Method and Description |
---|---|
void |
SVNExternalsStore.addDepth(java.io.File localAbsPath,
SVNDepth depth) |
java.util.List<SVNWCContext.CommittableExternalInfo> |
SVNWCContext.committableExternalsBelow(java.util.List<SVNWCContext.CommittableExternalInfo> externals,
java.io.File localAbsPath,
SVNDepth depth) |
private SVNDiffEditor17.SVNDirectoryInfo |
SVNDiffEditor17.createDirInfo(SVNDiffEditor17.SVNDirectoryInfo parent,
java.lang.String path,
boolean added,
SVNDepth depth) |
static ISVNUpdateEditor |
SVNUpdateEditor17.createUpdateEditor(SVNWCContext wcContext,
java.io.File anchorAbspath,
java.lang.String target,
java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNProperties>> inheritableProperties,
SVNURL reposRoot,
SVNURL switchURL,
SVNExternalsStore externalsStore,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExts,
ISVNDirFetcher dirFetcher) |
static ISVNUpdateEditor |
SVNUpdateEditor17.createUpdateEditor(SVNWCContext context,
long targetRevision,
java.io.File anchorAbspath,
java.lang.String targetName,
java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNProperties>> inheritableProperties,
boolean useCommitTimes,
SVNURL switchURL,
SVNDepth depth,
boolean depthIsSticky,
boolean allowUnversionedObstructions,
boolean addsAsModifications,
boolean serverPerformsFiltering,
boolean cleanCheckout,
ISVNDirFetcher dirFetcher,
SVNExternalsStore externalsStore,
java.lang.String[] preservedExtensions,
ISVNConflictHandler conflictHandler) |
private void |
SVNWCContext.cropChildren(java.io.File localAbspath,
SVNDepth depth) |
void |
SVNWCContext.cropTree(java.io.File localAbspath,
SVNDepth depth) |
void |
SVNLogClient17.doList(java.io.File path,
SVNRevision pegRevision,
SVNRevision revision,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler)
Reports the directory entry, and possibly children, for
path
at revision . |
void |
SVNLogClient17.doList(SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler)
Reports the directory entry, and possibly children, for
url
at revision . |
protected void |
SVNStatusEditor17.getDirStatus(java.io.File localAbsPath,
java.lang.String selected,
boolean skipThisDir,
ISVNWCDb.WCDbRepositoryInfo parentReposInfo,
ISVNWCDb.SVNWCDbInfo dirInfo,
SVNFileType fileType,
java.util.Collection<java.lang.String> ignorePatterns,
SVNDepth depth,
boolean getAll,
boolean noIgnore,
ISvnObjectReceiver<SvnStatus> handler) |
private void |
SVNRemoteStatusEditor17.handleStatii(ISVNWCDb.WCDbRepositoryInfo reposInfo,
java.util.Map<java.io.File,SvnStatus> statii,
boolean dirWasDeleted,
SVNDepth depth) |
void |
SVNWCContext.initializeWC(java.io.File localAbspath,
SVNURL url,
SVNURL repositoryRoot,
java.lang.String uuid,
long revision,
SVNDepth depth,
int targetWorkingCopyFormat) |
private void |
SVNWCContext.initWC(java.io.File localAbspath,
java.io.File reposRelpath,
SVNURL repositoryRoot,
java.lang.String uuid,
long revNumber,
SVNDepth depth,
int workingCopyFormat) |
static boolean |
SVNWCUtils.isRecursiveDepth(SVNDepth depth)
Return a recursion boolean based on @a depth.
|
void |
SVNStatusReporter17.linkPath(SVNURL url,
java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
void |
SVNWCContext.nodeWalkChildren(java.io.File localAbspath,
SVNWCContext.ISVNWCNodeHandler nodeHandler,
boolean showHidden,
SVNDepth walkDepth,
java.util.Collection<java.lang.String> changelists) |
private void |
SVNWCContext.recursiveResolveConflict(java.io.File localAbsPath,
SVNDepth depth,
boolean resolveText,
java.lang.String resolveProps,
boolean resolveTree,
SVNConflictChoice conflictChoice,
ISVNConflictHandler conflictHandler) |
private void |
SVNReporter17.reportRevisionsAndDepths(SVNWCDbRoot root,
java.io.File dirPath,
java.io.File dirLocalRelPath,
java.io.File reportRelPath,
long dirRev,
java.io.File dirReposRelPath,
SVNURL dirReposRoot,
SVNDepth dirDepth,
ISVNReporter reporter,
boolean restoreFiles,
SVNDepth depth,
boolean reportEverything) |
void |
SVNWCContext.resolvedConflict(java.io.File localAbsPath,
SVNDepth depth,
boolean resolveText,
java.lang.String resolveProps,
boolean resolveTree,
SVNConflictChoice conflictChoice) |
void |
SVNStatusReporter17.setPath(java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty) |
private void |
SVNWCContext.walkerHelper(java.io.File dirAbspath,
SVNWCContext.ISVNWCNodeHandler nodeHandler,
boolean showHidden,
SVNDepth depth,
java.util.Collection<java.lang.String> changelists) |
void |
SVNStatusEditor17.walkStatus(java.io.File localAbsPath,
SVNDepth depth,
boolean getAll,
boolean noIgnore,
boolean ignoreTextMods,
java.util.Collection<java.lang.String> ignorePatterns) |
Constructor and Description |
---|
SVNDiffEditor17(SVNWCContext wcContext,
java.io.File workingCopyRoot,
java.io.File localTarget,
SVNDepth depth,
boolean compareToBase,
boolean reverseDiff,
ISvnDiffCallback diffCallback,
boolean useAncestry,
java.util.Collection<java.lang.String> changeLists,
boolean diffUnversioned,
boolean diffCopiedAsAdded) |
SVNRemoteStatusEditor17(java.io.File anchorAbsPath,
java.lang.String targetBaseName,
SVNWCContext wcContext,
ISVNOptions options,
boolean includeIgnored,
boolean reportAll,
SVNDepth depth,
ISvnObjectReceiver<SvnStatus> realHandler) |
SVNReporter17(java.io.File path,
SVNWCContext wcContext,
boolean restoreFiles,
boolean useDepthCompatibilityTrick,
SVNDepth depth,
boolean lockOnDemand,
boolean isStatus,
boolean isHonorDepthExclude,
boolean isUseCommitTimes,
ISVNDebugLog log) |
SVNStatusEditor17(java.io.File path,
SVNWCContext wcContext,
ISVNOptions options,
boolean noIgnore,
boolean reportAll,
SVNDepth depth,
ISvnObjectReceiver<SvnStatus> handler) |
SVNUpdateEditor17(SVNWCContext wcContext,
java.io.File anchorAbspath,
java.lang.String targetBasename,
java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNProperties>> inheritableProperties,
SVNURL reposRootUrl,
java.lang.String reposUuid,
SVNURL switchURL,
SVNExternalsStore externalsStore,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
SVNDepth depth,
java.lang.String[] preservedExts,
ISVNDirFetcher dirFetcher) |
Modifier and Type | Field and Description |
---|---|
SVNDepth |
SVNWCDb.InsertBase.depth |
SVNDepth |
SVNWCDb.InsertWorking.depth |
private SVNDepth |
SVNWCDb.BumpRevisionPostUpdate.depth |
(package private) SVNDepth |
SvnWcDbChangelist.Changelist.depth |
SVNDepth |
ISVNWCDb.SVNWCDbInfo.depth |
SVNDepth |
ISVNWCDb.WCDbBaseInfo.depth |
SVNDepth |
ISVNWCDb.WCDbInfo.depth |
Modifier and Type | Method and Description |
---|---|
static SVNDepth |
SvnWcDbStatementUtil.getColumnDepth(SVNSqlJetStatement stmt,
java.lang.Enum<?> f) |
static SVNDepth |
SvnWcDbStatementUtil.parseDepth(java.lang.String depthStr) |
Modifier and Type | Method and Description |
---|---|
void |
SVNWCDb.addBaseDirectory(java.io.File localAbsPath,
java.io.File reposRelPath,
SVNURL reposRootUrl,
java.lang.String reposUuid,
long revision,
SVNProperties props,
long changedRev,
SVNDate changedDate,
java.lang.String changedAuthor,
java.util.List<java.io.File> children,
SVNDepth depth,
SVNProperties davCache,
SVNSkel conflict,
boolean updateActualProps,
SVNProperties actualProps,
java.util.Map<java.lang.String,SVNProperties> iprops,
SVNSkel workItems) |
void |
ISVNWCDb.addBaseDirectory(java.io.File localAbsPath,
java.io.File reposRelPath,
SVNURL reposRootUrl,
java.lang.String reposUuid,
long revision,
SVNProperties props,
long changedRev,
SVNDate changedDate,
java.lang.String changedAuthor,
java.util.List<java.io.File> children,
SVNDepth depth,
SVNProperties davCache,
SVNSkel conflict,
boolean updateActualProps,
SVNProperties actualProps,
java.util.Map<java.lang.String,SVNProperties> iprops,
SVNSkel workItems)
Add or replace a directory in the BASE tree.
|
private void |
SVNWCDb.BumpRevisionPostUpdate.bumpMovedAway(SVNWCDbRoot wcRoot,
java.io.File localRelPath,
int opDepth,
java.util.Set<java.io.File> srcDone,
SVNDepth depth,
ISVNWCDb db) |
private void |
SVNWCDb.BumpRevisionPostUpdate.bumpMovedAway(SVNWCDbRoot wcRoot,
java.io.File localRelPath,
SVNDepth depth,
SVNWCDb db) |
private void |
SVNWCDb.BumpRevisionPostUpdate.bumpNodeRevision(SVNWCDbRoot root,
java.io.File wcRoot,
java.io.File localRelPath,
long reposId,
java.io.File newReposRelPath,
long newRevision,
SVNDepth depth,
java.util.Collection<java.io.File> exludedRelPaths,
boolean isRoot,
boolean skipWhenDir) |
private static java.util.Collection<SvnWcDbProperties.Properties> |
SvnWcDbProperties.cacheProperties(SVNWCDbRoot root,
java.io.File relpath,
SVNDepth depth,
boolean baseProperties,
boolean pristineProperties,
java.util.Collection<java.lang.String> changelists) |
protected static java.util.Collection<SvnWcDbShared.Target> |
SvnWcDbShared.collectTargets(SVNWCDbRoot root,
java.io.File relpath,
SVNDepth depth,
java.util.Collection<java.lang.String> changelists) |
static void |
SvnWcDbCopy.copyDir(SVNWCDbDir pdh,
java.io.File localRelpath,
SVNProperties props,
long changedRev,
SVNDate changedDate,
java.lang.String changedAuthor,
java.io.File originalReposRelPath,
SVNURL originalRootUrl,
java.lang.String originalUuid,
long originalRevision,
java.util.List<java.io.File> children,
boolean isMove,
SVNDepth depth,
SVNSkel conflict,
SVNSkel workItems) |
private boolean |
SVNWCDb.BumpRevisionPostUpdate.depthSufficientToBump(java.io.File localRelPath,
SVNWCDbRoot wcRoot,
SVNDepth depth) |
private void |
SVNWCDb.flushEntries(SVNWCDbRoot wcRoot,
java.io.File localAbsPath,
SVNDepth depth) |
static java.util.Map<java.io.File,java.io.File> |
SvnWcDbProperties.getInheritedPropertiesNodes(SVNWCDbRoot root,
java.io.File localRelPath,
SVNDepth depth) |
void |
SVNWCDb.init(java.io.File localAbsPath,
java.io.File reposRelPath,
SVNURL reposRootUrl,
java.lang.String reposUuid,
long initialRev,
SVNDepth depth,
int workingCopyFormat) |
void |
ISVNWCDb.init(java.io.File localAbsPath,
java.io.File reposRelPath,
SVNURL reposRootUrl,
java.lang.String reposUuid,
long initialRev,
SVNDepth depth,
int workingCopyFormat)
Initialize the SqlDB for LOCAL_ABSPATH, which should be a working copy
path.
|
void |
SVNWCDb.opBumpRevisionPostUpdate(java.io.File localAbsPath,
SVNDepth depth,
java.io.File newReposRelPath,
SVNURL newReposRootURL,
java.lang.String newReposUUID,
long newRevision,
java.util.Collection<java.io.File> excludedPaths,
java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNProperties>> inheritableProperties,
ISVNEventHandler eventHandler) |
void |
ISVNWCDb.opBumpRevisionPostUpdate(java.io.File localAbsPath,
SVNDepth depth,
java.io.File newReposRelPath,
SVNURL newReposRootURL,
java.lang.String newReposUUID,
long newRevision,
java.util.Collection<java.io.File> excludedPaths,
java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNProperties>> inheritableProperties,
ISVNEventHandler eventHandler) |
void |
SVNWCDb.opCopyDir(java.io.File localAbsPath,
SVNProperties props,
long changedRev,
SVNDate changedDate,
java.lang.String changedAuthor,
java.io.File originalReposRelPath,
SVNURL originalRootUrl,
java.lang.String originalUuid,
long originalRevision,
java.util.List<java.io.File> children,
boolean isMove,
SVNDepth depth,
SVNSkel conflict,
SVNSkel workItems) |
void |
ISVNWCDb.opCopyDir(java.io.File localAbsPath,
SVNProperties props,
long changedRev,
SVNDate changedDate,
java.lang.String changedAuthor,
java.io.File originalReposRelPath,
SVNURL originalRootUrl,
java.lang.String originalUuid,
long originalRevision,
java.util.List<java.io.File> children,
boolean isMove,
SVNDepth depth,
SVNSkel conflict,
SVNSkel workItems)
Record a copy at LOCAL_ABSPATH from a repository directory.
|
void |
SVNWCDb.opRevert(java.io.File localAbspath,
SVNDepth depth) |
void |
ISVNWCDb.opRevert(java.io.File localAbspath,
SVNDepth depth) |
void |
SVNWCDb.opSetChangelist(java.io.File localAbspath,
java.lang.String changelistName,
java.lang.String[] changeLists,
SVNDepth depth,
ISVNEventHandler eventHandler) |
void |
ISVNWCDb.opSetChangelist(java.io.File localAbsPath,
java.lang.String changelistName,
java.lang.String[] changeLists,
SVNDepth depth,
ISVNEventHandler handler)
use NULL to remove from a changelist.
|
void |
SVNWCDb.opSetDirDepthTemp(java.io.File localAbspath,
SVNDepth depth) |
void |
ISVNWCDb.opSetDirDepthTemp(java.io.File localAbspath,
SVNDepth requestedDepth) |
void |
SVNWCDb.opSetNewDirToIncompleteTemp(java.io.File localAbspath,
java.io.File reposRelpath,
SVNURL reposRootURL,
java.lang.String reposUuid,
long revision,
SVNDepth depth,
boolean insertBaseDeleted,
boolean deleteWorking,
SVNSkel conflict,
SVNSkel workItems) |
void |
ISVNWCDb.opSetNewDirToIncompleteTemp(java.io.File localAbspath,
java.io.File reposRelpath,
SVNURL reposRootURL,
java.lang.String reposUuid,
long revision,
SVNDepth depth,
boolean insertBaseDeleted,
boolean deleteWorking,
SVNSkel conflict,
SVNSkel workItems) |
void |
SVNWCDb.readPropertiesRecursively(java.io.File localAbsPath,
SVNDepth depth,
boolean baseProperties,
boolean pristineProperties,
java.util.Collection<java.lang.String> changelists,
ISvnObjectReceiver<SVNProperties> receiver) |
static void |
SvnWcDbProperties.readPropertiesRecursively(SVNWCDbRoot root,
java.io.File relpath,
SVNDepth depth,
boolean baseProperties,
boolean pristineProperties,
java.util.Collection<java.lang.String> changelists,
ISvnObjectReceiver<SVNProperties> receiver) |
static void |
SvnWcDbChangelist.setChangelist(SVNWCDbRoot root,
java.io.File localRelPath,
java.lang.String changelistName,
java.lang.String[] changeLists,
SVNDepth depth,
ISVNEventHandler eventHandler) |
private void |
SVNWCDb.updateDepthValues(java.io.File localAbspath,
SVNWCDbDir pdh,
java.io.File localRelpath,
SVNDepth depth) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SVNWCDbCollectTargets.depth |
private SVNDepth |
SVNWCDbSelectIPropsNode.depth |
Modifier and Type | Method and Description |
---|---|
private SVNDepth |
SVNWCDbCollectTargets.getDepth() |
Modifier and Type | Method and Description |
---|---|
private void |
SVNWCDbCollectTargets.setDepth(SVNDepth depth) |
void |
SVNWCDbSelectIPropsNode.setDepth(SVNDepth depth) |
Constructor and Description |
---|
SVNWCDbCollectTargets(SVNSqlJetDb sDb,
long wcId,
java.io.File target,
SVNDepth depth,
java.util.Collection<java.lang.String> changelists) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SvnNgMergeDriver.FindOperativeSubtreeRevisions.depth |
SVNDepth |
SvnNgCommitUtil.CommitStatusWalker.depth |
private SVNDepth |
SvnDiffEditor.depth |
private SVNDepth |
SvnDiffEditor.Entry.depth |
Modifier and Type | Method and Description |
---|---|
private static SVNDepth |
SvnNgDiffUtil.getDiffDepth(SVNDepth depth) |
private SVNDepth |
SvnNgDiff.getDiffDepth(SVNDepth depth) |
Modifier and Type | Method and Description |
---|---|
protected void |
SvnNgAdd.add(java.io.File localAbsPath,
SVNDepth depth,
SVNURL copyFromUrl,
long copyFromRevision,
boolean fireEvent) |
private void |
SvnNgAdd.addDirectory(java.io.File path,
SVNDepth depth,
boolean refreshIgnores) |
private void |
SvnNgCommit.appendExternalsAsExplicitTargets(java.util.Collection<java.lang.String> targets,
java.io.File baseAbsPath,
boolean includeFileExternals,
boolean includeDirectoryExternals,
SVNDepth depth,
SVNWCContext context) |
private static void |
SvnNgDiffUtil.arbitraryDiffThisDir(SvnNgDiffUtil.ArbitraryDiffWalker diffWalker,
java.io.File localAbsPath,
SVNDepth depth,
SVNWCContext context,
ISvnDiffCallback callback,
ISVNCanceller canceller) |
private static void |
SvnNgCommitUtil.bailOnTreeConflictedChildren(SVNWCContext context,
java.io.File localAbsPath,
SVNNodeKind kind,
SVNDepth depth,
java.util.Collection<java.lang.String> changelistsSet) |
private boolean |
SvnNgMergeDriver.calculateMergeInheritance(SVNMergeRangeList rangeList,
java.io.File localAbsPath,
boolean wcPathIsMergeTarget,
boolean wcPathHasMissingChild,
SVNDepth depth) |
protected long |
SvnNgAbstractUpdate.checkout(SVNURL url,
java.io.File localAbspath,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean ignoreExternals,
boolean allowUnversionedObstructions,
boolean sleepForTimestamp,
int targetWorkingCopyFormat) |
private void |
SvnNgReposToWcCopy.copyForeign(SVNURL url,
java.io.File dstAbsPath,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean makeParents,
boolean alreadyLocked) |
private void |
SvnNgReposToWcCopy.copyForeignDir(SVNRepository repository,
long locRev,
java.io.File dstAbsPath,
SVNDepth depth) |
private void |
SvnNgExport.copyVersionedDir(java.io.File from,
java.io.File to,
SVNRevision revision,
java.lang.String eolStyle,
boolean ignoreKeywords,
boolean force,
SVNDepth depth) |
static SvnNgRemoteDiffEditor |
SvnNgRemoteDiffEditor.createEditor(SVNWCContext context,
java.io.File target,
SVNDepth depth,
SVNRepository repository,
long revision,
boolean walkDeletedDirs,
boolean dryRun,
boolean pureRemoteDiff,
ISvnDiffCallback diffCallback,
ISVNEventHandler handler) |
protected static void |
SvnNgDiffUtil.diffBaseOnlyDirectory(java.io.File localAbsPath,
java.io.File relPath,
long revision,
SVNDepth depth,
ISVNWCDb db,
ISvnDiffCallback2 callback) |
protected static void |
SvnNgDiffUtil.diffLocalOnlyDirectory(java.io.File localAbsPath,
java.io.File relPath,
SVNDepth depth,
java.util.Collection<java.lang.String> changelists,
boolean diffPristine,
SVNWCContext context,
ISvnDiffCallback2 callback) |
private static void |
SvnNgDiffUtil.doArbitraryDirsDiff(java.io.File localAbsPath1,
java.io.File localAbsPath2,
java.io.File rootAbsPath1,
java.io.File rootAbsPath2,
SVNDepth depth,
SVNWCContext context,
ISvnDiffCallback callback,
ISVNCanceller canceller) |
static void |
SvnNgDiffUtil.doArbitraryNodesDiff(SvnTarget target1,
SvnTarget target2,
SVNDepth depth,
SVNWCContext context,
ISvnDiffCallback callback,
ISVNCanceller canceller) |
private void |
SvnNgDiffSummarize.doDiff(SvnTarget target1,
SVNRevision revision1,
SvnTarget target2,
SVNRevision revision2,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
private void |
SvnNgDiffSummarize.doDiffReposRepos(SVNURL url1,
java.io.File path1,
SVNRevision revision1,
SVNURL url2,
java.io.File path2,
SVNRevision revision2,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
private void |
SvnNgDiffSummarize.doDiffReposWC(SvnTarget target1,
SVNRevision revision1,
SvnTarget target2,
SVNRevision revision2,
SVNRevision pegRevision,
boolean reverse,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
static void |
SvnNgDiffUtil.doDiffSummarizeReposWC(SvnTarget target1,
SVNRevision revision1,
SVNRevision pegRevision,
SvnTarget target2,
SVNRevision revision2,
boolean reverse,
SvnNgRepositoryAccess repositoryAccess,
SVNWCContext context,
boolean useGitDiffFormat,
SVNDepth depth,
boolean useAncestry,
java.util.Collection<java.lang.String> changelists,
boolean showCopiesAsAdds,
ISvnDiffGenerator generator,
ISVNDiffStatusHandler handler,
ISVNCanceller canceller) |
private void |
SvnNgDiffSummarize.doDiffURL(SVNURL url,
java.io.File path,
SVNRevision startRevision,
SVNRevision endRevision,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
static void |
SvnNgDiffUtil.doDiffWCWC(java.io.File localAbsPath,
SvnNgRepositoryAccess repositoryAccess,
SVNWCContext context,
SVNDepth depth,
boolean useAncestry,
java.util.Collection<java.lang.String> changelists,
boolean showCopiesAsAdds,
boolean useGitDiffFormat,
ISvnDiffGenerator generator,
ISvnDiffCallback callback,
ISVNCanceller canceller) |
private void |
SvnNgDiffSummarize.doDiffWCWC(SvnTarget target1,
SVNRevision revision1,
SvnTarget target2,
SVNRevision revision2,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
protected SvnSingleRangeConflictReport |
SvnNgMergeDriver.doDirectoryMerge(java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNMergeRangeList>> resultCatalog,
SvnNgMergeDriver.MergeSource source,
java.io.File targetAbsPath,
SVNURL sourceRootUrl,
ISvnDiffCallback2 processor,
SVNDepth depth,
boolean squelchMergeinfoNotifications) |
protected SvnNgMergeDriver.MergeData |
SvnNgMergeDriver.doMerge(java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNMergeRangeList>> resultCatalog,
java.util.List<SvnNgMergeDriver.MergeSource> mergeSources,
java.io.File targetAbsPath,
SVNRepository sourceRepository,
boolean sourcesRelated,
boolean sameRepository,
boolean ignoreMergeInfo,
boolean diffIgnoreAncestry,
boolean forceDelete,
boolean dryRun,
boolean recordOnly,
java.util.Collection<java.io.File> recordOnlyPaths,
boolean reintegrateMerge,
boolean squelcheMergeInfoNotifications,
SVNDepth depth,
SVNDiffOptions diffOptions) |
protected SvnSingleRangeConflictReport |
SvnNgMergeDriver.doMergeInfoAwareDirectoryMerge(java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNMergeRangeList>> resultCatalog,
SvnNgMergeDriver.MergeSource source,
java.io.File targetPath,
SVNURL sourceRootUrl,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
SVNDepth depth,
boolean squelchMergeinfoNotifications,
ISvnDiffCallback2 processor) |
protected SvnSingleRangeConflictReport |
SvnNgMergeDriver.doMergeInfoUnawareDirectoryMerge(SvnNgMergeDriver.MergeSource source,
java.io.File targetPath,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
SVNDepth depth) |
protected long |
SvnNgAbstractUpdate.doSwitch(java.io.File localAbsPath,
SVNURL switchUrl,
SVNRevision revision,
SVNRevision pegRevision,
SVNDepth depth,
boolean depthIsSticky,
boolean ignoreExternals,
boolean allowUnversionedObstructions,
boolean ignoreAncestry,
boolean sleepForTimestamp) |
private void |
SvnNgMergeDriver.driveMergeReportEditor(java.io.File targetAbsPath,
SvnNgMergeDriver.MergeSource source,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
ISvnDiffCallback2 processor,
SVNDepth depth) |
SvnNgRemoteMergeEditor |
SvnNgMergeDriver.driveMergeReportEditor(java.io.File targetWCPath,
SVNURL url1,
long revision1,
SVNURL url2,
long revision2,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
SVNDepth depth,
ISvnDiffCallback2 mergeCallback) |
private void |
SvnNgMergeDriver.flagSubTreesNeedingMergeInfo(boolean operativeMerge,
SVNMergeRange mergeRange,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
java.io.File mergeInfoPath,
SVNDepth depth) |
private static SVNDepth |
SvnNgDiffUtil.getDiffDepth(SVNDepth depth) |
private SVNDepth |
SvnNgDiff.getDiffDepth(SVNDepth depth) |
static java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNProperties>> |
SvnNgInheritableProperties.getInheritalbeProperites(SVNWCContext context,
SVNRepository repository,
java.io.File localAbsPath,
long revision,
SVNDepth depth) |
private java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> |
SvnNgMergeDriver.getMergeInfoPaths(java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
java.io.File targetAbsPath,
SVNDepth depth,
boolean dryRun,
boolean sameRepos) |
private java.util.Map<java.io.File,java.lang.String> |
SvnNgMergeDriver.getOperativeImmediateChildren(java.io.File mergeSourceFsPath,
long oldestRevision,
long youngestRevision,
java.io.File mergeTargetAbsPath,
SVNDepth depth,
SVNRepository repository) |
private java.util.TreeMap<java.io.File,java.util.Map<java.lang.String,SVNMergeRangeList>> |
SvnNgMergeDriver.getWcExplicitMergeInfoCatalog(java.io.File targetAbsPath,
SVNDepth depth) |
protected void |
SvnNgAbstractUpdate.handleExternals(java.util.Map<java.io.File,java.lang.String> newExternals,
java.util.Map<java.io.File,SVNDepth> ambientDepths,
SVNURL anchorUrl,
java.io.File targetAbspath,
SVNURL reposRoot,
SVNDepth requestedDepth,
boolean sleepForTimestamp) |
private void |
SvnNgAbstractUpdate.handleExternalsChange(SVNURL reposRoot,
java.io.File externalPath,
java.lang.String externalDefinition,
java.util.Map<java.io.File,java.io.File> oldExternals,
SVNDepth ambientDepth,
SVNDepth requestedDepth) |
static void |
SvnNgCommitUtil.harvestCommittables(SVNWCContext context,
java.io.File localAbsPath,
SvnCommitPacket committables,
java.util.Map<SVNURL,java.lang.String> lockTokens,
SVNURL repositoryRootUrl,
java.io.File copyModeRelPath,
boolean copyModeRoot,
SVNDepth depth,
boolean justLocked,
java.util.Collection<java.lang.String> changelists,
java.util.Map<java.io.File,java.io.File> danglers,
boolean skipFiles,
boolean skipDirs,
SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback,
ISvnCommitParameters commitParameters,
java.util.Map<java.io.File,java.lang.String> externalsStorage,
ISVNEventHandler eventHandler) |
static SvnCommitPacket |
SvnNgCommitUtil.harvestCommittables(SVNWCContext context,
SvnCommitPacket packet,
java.util.Map<SVNURL,java.lang.String> lockTokens,
java.io.File baseDirPath,
java.util.Collection<java.lang.String> targets,
int depthEmptyStart,
SVNDepth depth,
boolean justLocked,
java.util.Collection<java.lang.String> changelists,
SvnNgCommitUtil.ISvnUrlKindCallback urlKindCallback,
ISvnCommitParameters commitParameters,
java.util.Map<java.io.File,java.lang.String> externalsStorage) |
private void |
SvnNgMergeDriver.insertParentAndSiblingsOfAbsentDelSubtree(java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo,
SvnNgMergeDriver.MergePath child,
SVNDepth depth) |
private boolean |
SvnNgGetInfo.isDepthIncludes(java.io.File rootPath,
SVNDepth depth,
java.io.File childPath,
SVNNodeKind childKind) |
SvnNgMergeDriver.MergeData |
SvnNgMergeDriver.mergeCousinsAndSupplementMergeInfo(java.io.File targetWCPath,
SVNRepository repository1,
SVNRepository repository2,
SVNURL url1,
long rev1,
SVNURL url2,
long rev2,
long youngestCommonRev,
SVNURL sourceReposRoot,
SVNURL wcReposRoot,
SVNDepth depth,
boolean ignoreMergeInfo,
boolean ignoreAncestry,
boolean forceDelete,
boolean recordOnly,
boolean dryRun) |
private void |
SvnNgMergeDriver.recordMergeInfoForAddedSubtrees(SVNMergeRange range,
java.lang.String mergeInfoPath,
SVNDepth depth,
boolean squelchMergeinfoNotifications,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo) |
protected void |
SvnNgMergeDriver.recordMergeInfoForDirectoryMerge(java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNMergeRangeList>> resultCatalog,
SVNMergeRange mergeRange,
java.lang.String mergeInfoPath,
SVNDepth depth,
boolean squelchMergeinfoNotifications,
java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo) |
static void |
SvnNgRevert.restore(SVNWCContext context,
java.io.File localAbsPath,
SVNDepth depth,
boolean useCommitTimes,
boolean revertRoot,
ISVNEventHandler notifier) |
static void |
SvnNgRevert.restore(SVNWCContext context,
java.io.File localAbsPath,
SVNDepth depth,
boolean useCommitTimes,
boolean revertRoot,
ISVNEventHandler notifier,
java.util.Set<java.io.File> modifiedCopiesThatShouldBePreserved) |
private void |
SvnNgRevert.revert(java.io.File localAbsPath,
SVNDepth depth,
boolean useCommitTimes) |
private void |
SvnNgRevert.revert(java.io.File localAbsPath,
SVNDepth depth,
boolean useCommitTimes,
java.util.Collection<java.lang.String> changelists) |
private void |
SvnNgRevert.revertChangelist(java.io.File localAbsPath,
SVNDepth depth,
boolean useCommitTimes,
java.util.Collection<java.lang.String> changelists) |
static void |
SvnNgPropertiesManager.setProperty(SVNWCContext context,
java.io.File path,
java.lang.String propertyName,
SVNPropertyValue propertyValue,
ISvnPropertyValueProvider pvProvider,
SVNDepth depth,
boolean skipChecks,
ISVNEventHandler eventHandler,
ISvnObjectReceiver<SVNPropertyData> receiver,
java.util.Collection<java.lang.String> changelists) |
static void |
SvnNgPropertiesManager.setProperty(SVNWCContext context,
java.io.File path,
java.lang.String propertyName,
SVNPropertyValue propertyValue,
SVNDepth depth,
boolean skipChecks,
ISVNEventHandler eventHandler,
java.util.Collection<java.lang.String> changelists) |
static void |
SvnNgPropertiesManager.setProperty(SVNWCContext context,
java.io.File path,
java.lang.String propertyName,
SVNPropertyValue propertyValue,
SVNDepth depth,
boolean skipChecks,
ISVNEventHandler eventHandler,
ISvnObjectReceiver<SVNPropertyData> receiver,
java.util.Collection<java.lang.String> changelists) |
protected long |
SvnNgAbstractUpdate.switchInternal(java.io.File localAbsPath,
java.io.File anchor,
SVNURL switchUrl,
SVNRevision revision,
SVNRevision pegRevision,
SVNDepth depth,
boolean depthIsSticky,
boolean ignoreExternals,
boolean allowUnversionedObstructions,
boolean ignoreAncestry,
boolean sleepForTimestamp) |
protected long |
SvnNgAbstractUpdate.update(SVNWCContext wcContext,
java.io.File localAbspath,
SVNRevision revision,
SVNDepth depth,
boolean depthIsSticky,
boolean ignoreExternals,
boolean allowUnversionedObstructions,
boolean addsAsMoodifications,
boolean makeParents,
boolean innerUpdate,
boolean sleepForTimestamp) |
protected long |
SvnNgAbstractUpdate.updateInternal(SVNWCContext wcContext,
java.io.File localAbspath,
java.io.File anchorAbspath,
SVNRevision revision,
SVNDepth depth,
boolean depthIsSticky,
boolean ignoreExternals,
boolean allowUnversionedObstructions,
boolean addsAsMoodifications,
boolean sleepForTimestamp,
boolean notifySummary,
ISVNConflictHandler conflictHandler) |
private void |
SvnDiffEditor.walkLocalNodesDiff(java.io.File localAbspath,
java.lang.String path,
SVNDepth depth,
java.util.Set<java.lang.String> compared) |
Modifier and Type | Method and Description |
---|---|
protected void |
SvnNgAbstractUpdate.handleExternals(java.util.Map<java.io.File,java.lang.String> newExternals,
java.util.Map<java.io.File,SVNDepth> ambientDepths,
SVNURL anchorUrl,
java.io.File targetAbspath,
SVNURL reposRoot,
SVNDepth requestedDepth,
boolean sleepForTimestamp) |
Constructor and Description |
---|
Entry(boolean file,
java.lang.String path,
SvnDiffEditor.Entry parent,
boolean added,
SVNDepth depth,
java.io.File localAbspath) |
FindOperativeSubtreeRevisions(java.util.Map<java.io.File,java.lang.String> operativeChildren,
SVNWCContext context,
java.io.File mergeSourceFsPath,
java.io.File mergeTargetAbsPath,
SVNDepth depth) |
SvnDiffEditor(java.io.File anchorAbspath,
java.lang.String target,
ISvnDiffCallback callback,
SVNDepth depth,
SVNWCContext context,
boolean reverseOrder,
boolean useTextBase,
boolean showCopiesAsAdds,
boolean ignoreAncestry,
java.util.Collection<java.lang.String> changelists,
boolean useGitDiffFormat,
ISVNCanceller canceller) |
Modifier and Type | Field and Description |
---|---|
(package private) SVNDepth |
SvnOldUpgradeEntries.DbNode.depth |
Modifier and Type | Method and Description |
---|---|
private void |
SvnRemoteList.doList(SVNRepository repos,
long rev,
ISVNDirEntryHandler handler,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
SVNURL externalParentUrl,
java.lang.String externalTarget) |
private static void |
SvnRemoteList.list(SVNRepository repository,
java.lang.String path,
long rev,
SVNDepth depth,
int entryFields,
java.util.Map<SVNURL,SVNPropertyValue> externals,
SVNURL externalParentUrl,
java.lang.String externalTarget,
ISVNDirEntryHandler handler) |
private void |
SvnRemoteList.listExternalItems(SVNRepository repository,
SVNExternal[] externalItems,
SVNURL externalParentUrl,
SVNDepth depth,
int entryFields,
boolean fetchLocks,
ISVNDirEntryHandler handler) |
private void |
SvnRemoteList.listExternals(SVNRepository repository,
java.util.Map<SVNURL,SVNPropertyValue> externals,
SVNDepth depth,
int entryFields,
boolean fetchLocks,
ISVNDirEntryHandler handler) |
private void |
SvnRemoteGetInfo.pushDirInfo(SVNRepository repos,
SVNRevision rev,
java.lang.String dir,
SVNURL root,
java.lang.String uuid,
SVNURL url,
java.util.Map<java.lang.String,SVNLock> locks,
SVNDepth depth) |
static void |
SvnRemoteGetProperties.remotePropertyGet(SVNURL url,
SVNNodeKind kind,
java.lang.String path,
SVNRepository repos,
long revNumber,
SVNDepth depth,
ISvnObjectReceiver<SVNProperties> receiver) |
Modifier and Type | Method and Description |
---|---|
void |
SVNRepository.checkout(long revision,
java.lang.String target,
SVNDepth depth,
ISVNEditor editor)
Checks out a directory from a repository to define
depth . |
abstract void |
SVNRepository.diff(SVNURL url,
long targetRevision,
long revision,
java.lang.String target,
boolean ignoreAncestry,
SVNDepth depth,
boolean getContents,
ISVNReporterBaton reporter,
ISVNEditor editor)
Asks this repository access object to 'diff' a working copy against
targetRevision . |
void |
ISVNReporter.linkPath(SVNURL url,
java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty)
Describes a local path as being at a particular revision
to switch the path to a different repository location.
|
void |
ISVNReporter.setPath(java.lang.String path,
java.lang.String lockToken,
long revision,
SVNDepth depth,
boolean startEmpty)
Describes a working copy
path as being at a particular
revision and having depth depth . |
abstract void |
SVNRepository.status(long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor)
Gets status of a path to the particular
depth as a scope. |
abstract void |
SVNRepository.update(long revision,
java.lang.String target,
SVNDepth depth,
boolean sendCopyFromArgs,
ISVNReporterBaton reporter,
ISVNEditor editor)
Updates a path receiving changes from a repository.
|
abstract void |
SVNRepository.update(SVNURL url,
long revision,
java.lang.String target,
SVNDepth depth,
ISVNReporterBaton reporter,
ISVNEditor editor)
Asks this repository access object to 'switch' a versioned tree to a new
url . |
Modifier and Type | Method and Description |
---|---|
private PropertyData[] |
SVNClientImpl.properties(java.lang.String path,
Revision revision,
Revision pegRevision,
SVNDepth depth,
java.lang.String[] changelists) |
Modifier and Type | Method and Description |
---|---|
private SVNDepth |
SVNClientImpl.getSVNDepth(Depth depth) |
Modifier and Type | Method and Description |
---|---|
private Depth |
SVNClientImpl.getDepth(SVNDepth depth) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SVNStatus.myDepth |
private SVNDepth |
SVNInfo.myDepth |
Modifier and Type | Method and Description |
---|---|
SVNDepth |
SVNStatus.getDepth() |
SVNDepth |
SVNInfo.getDepth()
Gets the item's depth.
|
Modifier and Type | Method and Description |
---|---|
void |
SVNChangelistClient.addToChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String changelist,
java.lang.String[] changelists)
Deprecated.
|
void |
SVNWCClient.doAdd(java.io.File[] paths,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean depthIsSticky,
boolean includeIgnored,
boolean makeParents)
Schedules working copy
paths for addition to the repository. |
void |
SVNWCClient.doAdd(java.io.File[] paths,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean depthIsSticky,
boolean includeIgnored,
boolean makeParents,
boolean applyAutoProperties)
Schedules working copy
paths for addition to the repository. |
void |
SVNWCClient.doAdd(java.io.File path,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean includeIgnored,
boolean makeParents)
Schedules a working copy
path for addition to the
repository. |
void |
SVNWCClient.doAdd(java.io.File path,
boolean force,
boolean mkdir,
boolean climbUnversionedParents,
SVNDepth depth,
boolean depthIsSticky,
boolean includeIgnored,
boolean makeParents)
Schedules a working copy
path for addition to the
repository. |
void |
SVNChangelistClient.doAddToChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String changelist,
java.lang.String[] changelists)
Adds each path in
paths (recursing to depth as
necessary) to changelist . |
long |
SVNUpdateClient.doCheckout(SVNURL url,
java.io.File dstPath,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions)
Checks out a working copy of
url at revision ,
looked up at pegRevision , using dstPath as the
root directory of the newly checked out working copy. |
SVNCommitPacket[] |
SVNCommitClient.doCollectCommitItems(java.io.File[] paths,
boolean keepLocks,
boolean force,
SVNDepth depth,
boolean combinePackets,
java.lang.String[] changelists)
Collects commit items (containing detailed information on each Working
Copy item that was changed and need to be committed to the repository)
into different
SVNCommitPacket s. |
SVNCommitPacket |
SVNCommitClient.doCollectCommitItems(java.io.File[] paths,
boolean keepLocks,
boolean force,
SVNDepth depth,
java.lang.String[] changelists)
Collects commit items (containing detailed information on each Working
Copy item that contains changes and need to be committed to the
repository) into a single
SVNCommitPacket . |
SVNCommitInfo |
SVNCommitClient.doCommit(java.io.File[] paths,
boolean keepLocks,
java.lang.String commitMessage,
SVNProperties revisionProperties,
java.lang.String[] changelists,
boolean keepChangelist,
boolean force,
SVNDepth depth)
Commits files or directories into repository.
|
void |
SVNDiffClient.doDiff(java.io.File[] paths,
SVNRevision rN,
SVNRevision rM,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection<java.lang.String> changeLists)
Iterates over the passed in
paths calling
SVNDiffClient.doDiff(File, SVNRevision, SVNRevision, SVNRevision, SVNDepth, boolean, OutputStream, Collection)
for each one in the array. |
void |
SVNDiffClient.doDiff(java.io.File path1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection<java.lang.String> changeLists)
Produces diff output which describes the delta between
path1
/rN and path2 /rM . |
void |
SVNDiffClient.doDiff(java.io.File path,
SVNRevision pegRevision,
SVNRevision rN,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection<java.lang.String> changeLists)
Produces diff output which describes the delta between
path
in peg revision pegRevision , as it changed between
rN and rM . |
void |
SVNDiffClient.doDiff(java.io.File path1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection<java.lang.String> changeLists)
Produces diff output which describes the delta between
path1
/rN and url2 /rM . |
void |
SVNDiffClient.doDiff(SVNURL url1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result,
java.util.Collection<java.lang.String> changeLists)
Produces diff output which describes the delta between
url1 /
rN and path2 /rM . |
void |
SVNDiffClient.doDiff(SVNURL url,
SVNRevision pegRevision,
SVNRevision rN,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result)
Produces diff output which describes the delta between
url
in peg revision pegRevision , as it changed between
rN and rM . |
void |
SVNDiffClient.doDiff(SVNURL url1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
java.io.OutputStream result)
Produces diff output which describes the delta between
url1 /
rN and url2 /rM . |
void |
SVNDiffClient.doDiffStatus(java.io.File path1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
path1 /rN and path2 /rM
without creating text deltas. |
void |
SVNDiffClient.doDiffStatus(java.io.File path,
SVNRevision rN,
SVNRevision rM,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
path in peg revision pegRevision , as it changed
between rN and rM . |
void |
SVNDiffClient.doDiffStatus(java.io.File path1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
path1 /rN and url2 /rM
without creating text deltas. |
private void |
SVNDiffClient.doDiffStatus(SvnTarget source,
SVNRevision rN,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
private void |
SVNDiffClient.doDiffStatus(SvnTarget source1,
SvnTarget source2,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler) |
void |
SVNDiffClient.doDiffStatus(SVNURL url1,
SVNRevision rN,
java.io.File path2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
url1 /rN and path2 /rM
without creating text deltas. |
void |
SVNDiffClient.doDiffStatus(SVNURL url,
SVNRevision rN,
SVNRevision rM,
SVNRevision pegRevision,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
url in peg revision pegRevision , as it changed
between rN and rM . |
void |
SVNDiffClient.doDiffStatus(SVNURL url1,
SVNRevision rN,
SVNURL url2,
SVNRevision rM,
SVNDepth depth,
boolean useAncestry,
ISVNDiffStatusHandler handler)
Produces a diff summary which lists the changed items between
url1 /rN and url2 /rM
without creating text deltas. |
long |
SVNUpdateClient.doExport(java.io.File srcPath,
java.io.File dstPath,
SVNRevision pegRevision,
SVNRevision revision,
java.lang.String eolStyle,
boolean overwrite,
SVNDepth depth)
Exports the contents of either a subversion repository or a subversion
working copy into a 'clean' directory (meaning a directory with no
administrative directories).
|
long |
SVNUpdateClient.doExport(SVNURL url,
java.io.File dstPath,
SVNRevision pegRevision,
SVNRevision revision,
java.lang.String eolStyle,
boolean overwrite,
SVNDepth depth)
Exports the contents of a subversion repository into a 'clean' directory
(meaning a directory with no administrative directories).
|
void |
SVNChangelistClient.doGetChangeListPaths(java.util.Collection<java.lang.String> changeLists,
java.util.Collection<java.io.File> targets,
SVNDepth depth,
ISVNChangelistHandler handler)
Gets paths belonging to the specified changelists discovered under the
specified targets.
|
void |
SVNChangelistClient.doGetChangeLists(java.io.File path,
java.util.Collection<java.lang.String> changeLists,
SVNDepth depth,
ISVNChangelistHandler handler)
Gets paths belonging to the specified changelists discovered under the
specified path.
|
void |
SVNWCClient.doGetProperty(java.io.File path,
java.lang.String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler,
java.util.Collection<java.lang.String> changeLists)
Invokes
handler on paths covered by depth
starting with the specified path . |
void |
SVNWCClient.doGetProperty(SVNURL url,
java.lang.String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler)
Invokes
handler on paths covered by depth
starting with the specified path . |
SVNCommitInfo |
SVNCommitClient.doImport(java.io.File path,
SVNURL dstURL,
java.lang.String commitMessage,
SVNProperties revisionProperties,
boolean useGlobalIgnores,
boolean ignoreUnknownNodeTypes,
SVNDepth depth)
Imports file or directory
path into repository directory
dstURL at HEAD revision. |
SVNCommitInfo |
SVNCommitClient.doImport(java.io.File path,
SVNURL dstURL,
java.lang.String commitMessage,
SVNProperties revisionProperties,
boolean useGlobalIgnores,
boolean ignoreUnknownNodeTypes,
SVNDepth depth,
boolean applyAutoProperties)
Imports file or directory
path into repository directory
dstURL at HEAD revision. |
void |
SVNWCClient.doInfo(java.io.File path,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
java.util.Collection<java.lang.String> changeLists,
ISVNInfoHandler handler)
Invokes
handler to return information about
path in revision . |
void |
SVNWCClient.doInfo(SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNInfoHandler handler)
Invokes
handler to return information about url
in revision . |
void |
SVNLogClient.doList(java.io.File path,
SVNRevision pegRevision,
SVNRevision revision,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler)
Reports the directory entry, and possibly children, for
path
at revision . |
void |
SVNLogClient.doList(SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
boolean fetchLocks,
SVNDepth depth,
int entryFields,
ISVNDirEntryHandler handler)
Reports the directory entry, and possibly children, for
url
at revision . |
void |
SVNDiffClient.doMerge(java.io.File path1,
SVNRevision pegRevision,
java.util.Collection<SVNRevisionRange> rangesToMerge,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges the changes between
path1 in peg revision
pegRevision , as it changed between the ranges described in
rangesToMerge . |
void |
SVNDiffClient.doMerge(java.io.File path1,
SVNRevision revision1,
java.io.File path2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
path1 /revision1 to
path2 /revision2 into the working-copy path
dstPath . |
void |
SVNDiffClient.doMerge(java.io.File path1,
SVNRevision revision1,
SVNURL url2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
path1 /revision1 to
url2 /revision2 into the working-copy path
dstPath . |
void |
SVNDiffClient.doMerge(SVNURL url1,
SVNRevision pegRevision,
java.util.Collection<SVNRevisionRange> rangesToMerge,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges the changes between
url1 in peg revision
pegRevision , as it changed between the ranges described in
rangesToMerge . |
void |
SVNDiffClient.doMerge(SVNURL url1,
SVNRevision revision1,
java.io.File path2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
url1 /revision1 to
path2 /revision2 into the working-copy path
dstPath . |
void |
SVNDiffClient.doMerge(SVNURL url1,
SVNRevision revision1,
SVNURL url2,
SVNRevision revision2,
java.io.File dstPath,
SVNDepth depth,
boolean useAncestry,
boolean force,
boolean dryRun,
boolean recordOnly)
Merges changes from
url1 /revision1 to
url2 /revision2 into the working-copy path
dstPath . |
void |
SVNChangelistClient.doRemoveFromChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String[] changelists)
Removes each path in
paths (recursing to depth
as necessary) from changelists to which they are currently assigned. |
void |
SVNWCClient.doResolve(java.io.File path,
SVNDepth depth,
boolean resolveContents,
boolean resolveProperties,
boolean resolveTree,
SVNConflictChoice conflictChoice)
Performs automatic conflict resolution on a working copy
path . |
void |
SVNWCClient.doResolve(java.io.File path,
SVNDepth depth,
boolean resolveContents,
boolean resolveProperties,
SVNConflictChoice conflictChoice)
Performs automatic conflict resolution on a working copy
path . |
void |
SVNWCClient.doResolve(java.io.File path,
SVNDepth depth,
SVNConflictChoice conflictChoice)
Performs automatic conflict resolution on a working copy
path . |
void |
SVNWCClient.doRevert(java.io.File[] paths,
SVNDepth depth,
java.util.Collection<java.lang.String> changeLists)
Restores the pristine version of working copy
paths ,
effectively undoing any local mods. |
void |
SVNWCClient.doSetProperty(java.io.File path,
ISVNPropertyValueProvider propertyValueProvider,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
java.util.Collection<java.lang.String> changeLists)
Crawls the working copy at
path and calls
ISVNPropertyValueProvider.providePropertyValues(java.io.File, org.tmatesoft.svn.core.SVNProperties)
to get properties to be change on each path being traversed
If depth is EMPTY ,
change the properties on path only; if
FILES , change the properties on path and
its file children (if any); if IMMEDIATES , on
path and all of its immediate children (both files and
directories); if INFINITY , on path and
everything beneath it. |
void |
SVNWCClient.doSetProperty(java.io.File path,
java.lang.String propName,
SVNPropertyValue propValue,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
java.util.Collection<java.lang.String> changeLists)
Sets
propName to propValue on path
. |
long |
SVNStatusClient.doStatus(java.io.File path,
SVNRevision revision,
SVNDepth depth,
boolean remote,
boolean reportAll,
boolean includeIgnored,
boolean collectParentExternals,
ISVNStatusHandler handler,
java.util.Collection<java.lang.String> changeLists)
Given a
path to a working copy directory (or single file),
calls handler with a set of SVNStatus objects which
describe the status of the path , and its children (recursing
according to depth ). |
long |
SVNUpdateClient.doSwitch(java.io.File path,
SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky)
Switches working tree
path to url \
pegRevision at revision . |
long |
SVNUpdateClient.doSwitch(java.io.File path,
SVNURL url,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
boolean ignoreAncestry) |
long[] |
SVNUpdateClient.doUpdate(java.io.File[] paths,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky)
Updates working trees
paths to revision . |
long[] |
SVNUpdateClient.doUpdate(java.io.File[] paths,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky,
boolean makeParents) |
long |
SVNUpdateClient.doUpdate(java.io.File path,
SVNRevision revision,
SVNDepth depth,
boolean allowUnversionedObstructions,
boolean depthIsSticky)
Updates working copy
to revision . |
void |
SVNChangelistClient.getChangeListPaths(java.util.Collection<java.lang.String> changeLists,
java.util.Collection<java.io.File> targets,
SVNDepth depth,
ISVNChangelistHandler handler)
|
void |
SVNChangelistClient.getChangeLists(java.io.File path,
java.util.Collection<java.lang.String> changeLists,
SVNDepth depth,
ISVNChangelistHandler handler)
Deprecated.
|
void |
SVNChangelistClient.removeFromChangelist(java.io.File[] paths,
SVNDepth depth,
java.lang.String[] changelists)
Deprecated.
|
void |
SVNStatus.setDepth(SVNDepth depth) |
Constructor and Description |
---|
SVNInfo(java.io.File file,
SVNURL url,
SVNURL rootURL,
long revision,
SVNNodeKind kind,
java.lang.String uuid,
long committedRevision,
java.lang.String committedDate,
java.lang.String author,
java.lang.String schedule,
SVNURL copyFromURL,
long copyFromRevision,
java.lang.String textTime,
java.lang.String propTime,
java.lang.String checksum,
java.lang.String conflictOld,
java.lang.String conflictNew,
java.lang.String conflictWorking,
java.lang.String propRejectFile,
SVNLock lock,
SVNDepth depth,
java.lang.String changelistName,
long wcSize,
SVNTreeConflictDescription treeConflict) |
SVNInfo(java.lang.String path,
SVNURL url,
SVNRevision revision,
SVNNodeKind kind,
java.lang.String uuid,
SVNURL reposRootURL,
long comittedRevision,
java.util.Date date,
java.lang.String author,
SVNLock lock,
SVNDepth depth,
long size) |
Modifier and Type | Field and Description |
---|---|
private SVNDepth |
SvnWorkingCopyInfo.depth |
private SVNDepth |
SvnStatus.depth |
private SVNDepth |
SvnOperation.depth |
Modifier and Type | Method and Description |
---|---|
SVNDepth |
SvnWorkingCopyInfo.getDepth()
Returns the local item's depth.
|
SVNDepth |
SvnStatus.getDepth()
Returns the local item's depth.
|
SVNDepth |
SvnOperation.getDepth()
Gets the limit of the operation by depth.
|
Modifier and Type | Method and Description |
---|---|
void |
SvnWorkingCopyInfo.setDepth(SVNDepth depth)
Sets the local item's depth.
|
void |
SvnStatus.setDepth(SVNDepth depth)
Sets the local item's depth.
|
void |
SvnOperation.setDepth(SVNDepth depth)
Sets the limit of the operation by depth.
|