Package | Description |
---|---|
org.tmatesoft.svn.cli.svn | |
org.tmatesoft.svn.core.internal.wc16 | |
org.tmatesoft.svn.core.internal.wc2.compat | |
org.tmatesoft.svn.core.internal.wc2.old | |
org.tmatesoft.svn.core.internal.wc2.remote | |
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.
|
Modifier and Type | Class and Description |
---|---|
class |
SVNPropDelCommand |
class |
SVNPropEditCommand |
class |
SVNPropertiesCommand |
class |
SVNPropGetCommand |
class |
SVNPropListCommand |
class |
SVNPropSetCommand |
Modifier and Type | Method and Description |
---|---|
void |
SVNWCClient16.doGetProperty(File path,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
boolean recursive,
ISVNPropertyHandler handler)
|
void |
SVNWCClient16.doGetProperty(File path,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler,
Collection changeLists)
Invokes
handler on paths covered by depth
starting with the specified path . |
void |
SVNWCClient16.doGetProperty(SVNURL url,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
boolean recursive,
ISVNPropertyHandler handler)
Deprecated.
|
void |
SVNWCClient16.doGetProperty(SVNURL url,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler)
Invokes
handler on paths covered by depth
starting with the specified path . |
void |
SVNWCClient16.doGetRevisionProperty(File path,
String propName,
SVNRevision revision,
ISVNPropertyHandler handler)
Gets an unversioned revision property from a repository (getting a
repository URL from a Working Copy) and passes it to a provided property
handler.
|
long |
SVNWCClient16.doGetRevisionProperty(SVNURL url,
String propName,
SVNRevision revision,
ISVNPropertyHandler handler)
Gets an unversioned revision property from a repository and passes it to
a provided property handler.
|
void |
SVNWCClient16.doSetProperty(File path,
ISVNPropertyValueProvider propertyValueProvider,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
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 SVNDepth.EMPTY ,
change the properties on path only; if
SVNDepth.FILES , change the properties on path and
its file children (if any); if SVNDepth.IMMEDIATES , on
path and all of its immediate children (both files and
directories); ifSVNDepth.INFINITY , on path and
everything beneath it. |
void |
SVNWCClient16.doSetProperty(File path,
String propName,
SVNPropertyValue propValue,
boolean force,
boolean recursive,
ISVNPropertyHandler handler)
|
void |
SVNWCClient16.doSetProperty(File path,
String propName,
SVNPropertyValue propValue,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
Collection changeLists)
Sets
propName to propValue on path
. |
SVNCommitInfo |
SVNWCClient16.doSetProperty(SVNURL url,
String propName,
SVNPropertyValue propValue,
SVNRevision baseRevision,
String commitMessage,
SVNProperties revisionProperties,
boolean skipChecks,
ISVNPropertyHandler handler)
Sets
propName to propValue on path
. |
void |
SVNWCClient16.doSetRevisionProperty(File path,
SVNRevision revision,
String propName,
SVNPropertyValue propValue,
boolean force,
ISVNPropertyHandler handler)
Set
propName to propValue on revision
revision in the repository represented by path . |
void |
SVNWCClient16.doSetRevisionProperty(SVNURL url,
SVNRevision revision,
String propName,
SVNPropertyValue propValue,
boolean force,
ISVNPropertyHandler handler)
Set
propName to propValue on revision
revision in the repository represented by path . |
Modifier and Type | Method and Description |
---|---|
static ISvnObjectReceiver<SVNPropertyData> |
SvnCodec.propertyReceiver(ISVNPropertyHandler handler) |
Modifier and Type | Class and Description |
---|---|
class |
SvnOldGetProperties |
class |
SvnOldSetProperty |
Modifier and Type | Class and Description |
---|---|
class |
SvnRemoteSetPropertyImpl |
Modifier and Type | Field and Description |
---|---|
static ISVNPropertyHandler |
ISVNPropertyHandler.NULL
This is just a default implementation which does nothing.
|
Modifier and Type | Method and Description |
---|---|
void |
SVNWCClient.doGetProperty(File path,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
boolean recursive,
ISVNPropertyHandler handler)
|
void |
SVNWCClient.doGetProperty(File path,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler,
Collection<String> changeLists)
Invokes
handler on paths covered by depth
starting with the specified path . |
void |
SVNWCClient.doGetProperty(SVNURL url,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
boolean recursive,
ISVNPropertyHandler handler)
|
void |
SVNWCClient.doGetProperty(SVNURL url,
String propName,
SVNRevision pegRevision,
SVNRevision revision,
SVNDepth depth,
ISVNPropertyHandler handler)
Invokes
handler on paths covered by depth
starting with the specified path . |
long |
SVNWCClient.doGetRevisionProperty(File path,
String propName,
SVNRevision revision,
ISVNPropertyHandler handler)
Gets an unversioned revision property from a repository (getting a
repository URL from a Working Copy) and passes it to a provided property
handler.
|
long |
SVNWCClient.doGetRevisionProperty(SVNURL url,
String propName,
SVNRevision revision,
ISVNPropertyHandler handler)
Gets an unversioned revision property from a repository and passes it to
a provided property handler.
|
void |
SVNWCClient.doSetProperty(File path,
ISVNPropertyValueProvider propertyValueProvider,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
Collection<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 SVNDepth.EMPTY ,
change the properties on path only; if
SVNDepth.FILES , change the properties on path and
its file children (if any); if SVNDepth.IMMEDIATES , on
path and all of its immediate children (both files and
directories); if SVNDepth.INFINITY , on path and
everything beneath it. |
void |
SVNWCClient.doSetProperty(File path,
String propName,
SVNPropertyValue propValue,
boolean force,
boolean recursive,
ISVNPropertyHandler handler)
|
void |
SVNWCClient.doSetProperty(File path,
String propName,
SVNPropertyValue propValue,
boolean skipChecks,
SVNDepth depth,
ISVNPropertyHandler handler,
Collection<String> changeLists)
Sets
propName to propValue on path
. |
SVNCommitInfo |
SVNWCClient.doSetProperty(SVNURL url,
String propName,
SVNPropertyValue propValue,
SVNRevision baseRevision,
String commitMessage,
SVNProperties revisionProperties,
boolean skipChecks,
ISVNPropertyHandler handler)
Sets
propName to propValue on path
. |
void |
SVNWCClient.doSetRevisionProperty(File path,
SVNRevision revision,
String propName,
SVNPropertyValue propValue,
boolean force,
ISVNPropertyHandler handler)
Set
propName to propValue on revision
revision in the repository represented by path . |
void |
SVNWCClient.doSetRevisionProperty(SVNURL url,
SVNRevision revision,
String propName,
SVNPropertyValue propValue,
boolean force,
ISVNPropertyHandler handler)
Set
propName to propValue on revision
revision in the repository represented by path . |
Copyright © 2019. All rights reserved.