Uses of Class
org.tmatesoft.svn.core.SVNPropertyValue
-
Packages that use SVNPropertyValue 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.util 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.wc2.admin org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.internal.wc2.patch 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.replicator This package provides classes that allow to replicate existing repositories.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.wc.admin This package provides API for administrative managing Subversion repositories on a local machine.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. -
-
Uses of SVNPropertyValue in org.tigris.subversion.javahl
Methods in org.tigris.subversion.javahl with parameters of type SVNPropertyValue Modifier and Type Method Description static PropertyData
JavaHLObjectFactory. createPropertyData(java.lang.Object client, java.lang.String path, java.lang.String name, SVNPropertyValue value)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.cli.svn
Methods in org.tmatesoft.svn.cli.svn with parameters of type SVNPropertyValue Modifier and Type Method Description protected void
SVNPropertiesCommand. checkBooleanProperty(java.lang.String name, SVNPropertyValue value)
protected void
SVNPropertiesCommand. printProperty(SVNPropertyValue value, boolean isPropListLike, boolean omitNewLine)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core
Fields in org.tmatesoft.svn.core declared as SVNPropertyValue Modifier and Type Field Description static SVNPropertyValue
SVNProperty. BOOLEAN_PROPERTY_VALUE
Default value for such properties asSVNProperty.EXECUTABLE
,SVNProperty.NEEDS_LOCK
,SVNProperty.SPECIAL
.Methods in org.tmatesoft.svn.core that return SVNPropertyValue Modifier and Type Method Description static SVNPropertyValue
SVNPropertyValue. create(char[] propertyValue, java.lang.String encoding)
Creates a new property value object representing a text property value.static SVNPropertyValue
SVNPropertyValue. create(java.lang.String propertyValue)
Creates a new property value object representing a text property value.static SVNPropertyValue
SVNPropertyValue. create(java.lang.String propertyName, byte[] data)
Creates a new property value object from the given byte array.static SVNPropertyValue
SVNPropertyValue. create(java.lang.String propertyName, byte[] data, int offset, int length)
Creates a new property value object from the given byte array.SVNPropertyValue
SVNProperties. getSVNPropertyValue(java.lang.String propertyName)
Returns a property value as anSVNPropertyValue
.static SVNPropertyValue
SVNProperty. getValueOfBooleanProperty(java.lang.String propName)
Returns the value for such boolean properties as "svn:executable", "svn:needs-lock" and "svn:special".SVNPropertyValue
SVNProperties. remove(java.lang.String propertyName)
Removes the specified property from this properties object.Methods in org.tmatesoft.svn.core that return types with arguments of type SVNPropertyValue Modifier and Type Method Description java.util.Map<java.lang.String,SVNPropertyValue>
SVNProperties. asMap()
Returns SVNProperties as Map of String, SVNPropertyValue pairs.Methods in org.tmatesoft.svn.core with parameters of type SVNPropertyValue Modifier and Type Method Description static boolean
SVNPropertyValue. areEqual(SVNPropertyValue propertyValue1, SVNPropertyValue propertyValue2)
boolean
SVNProperties. containsValue(SVNPropertyValue value)
Tells whether this properties object contains the specified property value.static byte[]
SVNPropertyValue. getPropertyAsBytes(SVNPropertyValue value)
Returnsbyte[]
representation ofvalue
.static char[]
SVNPropertyValue. getPropertyAsChars(SVNPropertyValue value)
ReturnsString
representation ofvalue
.static java.lang.String
SVNPropertyValue. getPropertyAsString(SVNPropertyValue value)
ReturnsString
representation ofvalue
.void
SVNProperties. put(java.lang.String propertyName, SVNPropertyValue propertyValue)
Stores a new mappingpropertyName
topropertyValue
in this object. -
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.io.dav
Methods in org.tmatesoft.svn.core.internal.io.dav that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
DAVProperties. getPropertyValue(DAVElement name)
SVNPropertyValue
DAVRepository. getRevisionPropertyValue(long revision, java.lang.String propertyName)
Methods in org.tmatesoft.svn.core.internal.io.dav with parameters of type SVNPropertyValue Modifier and Type Method Description void
DAVProperties. setProperty(DAVElement name, SVNPropertyValue value)
void
DAVRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)
static void
DAVUtil. setSpecialWCProperties(ISVNEditor editor, boolean isDir, java.lang.String path, DAVElement property, SVNPropertyValue propValue)
static void
DAVUtil. setSpecialWCProperties(SVNProperties props, DAVElement property, SVNPropertyValue propValue)
Deprecated.for binary compatibility onlystatic void
DAVUtil. setSpecialWCProperties(SVNProperties props, DAVElement property, SVNPropertyValue propValue, boolean isDir)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.io.dav.handlers
Methods in org.tmatesoft.svn.core.internal.io.dav.handlers that return SVNPropertyValue Modifier and Type Method Description protected SVNPropertyValue
BasicDAVHandler. createPropertyValue(DAVElement element, java.lang.String propertyName, java.lang.StringBuffer cdata, java.lang.String encoding)
protected SVNPropertyValue
BasicDAVHandler. createPropertyValueFromBase64(DAVElement element, java.lang.String propertyName, java.lang.StringBuffer cdata)
Methods in org.tmatesoft.svn.core.internal.io.dav.handlers with parameters of type SVNPropertyValue Modifier and Type Method Description static java.lang.StringBuffer
DAVProppatchHandler. generatePropertyRequest(java.lang.StringBuffer buffer, java.lang.String name, SVNPropertyValue value)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.io.fs
Methods in org.tmatesoft.svn.core.internal.io.fs that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
FSRepository. getRevisionPropertyValue(long revision, java.lang.String propertyName)
Methods in org.tmatesoft.svn.core.internal.io.fs with parameters of type SVNPropertyValue Modifier and Type Method Description void
FSCommitEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
FSCommitEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
FSCommitter. changeNodeProperty(java.lang.String path, java.lang.String name, SVNPropertyValue propValue)
void
FSFS. setRevisionProperty(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
FSRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
FSRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue, boolean bypassHooks)
void
FSRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue, boolean bypassPreRevpropHook, boolean bypassPostRevpropHook)
void
FSFS. setTransactionProperty(java.lang.String txnID, java.lang.String name, SVNPropertyValue propertyValue)
static void
FSRepositoryUtil. validateProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.io.svn
Methods in org.tmatesoft.svn.core.internal.io.svn that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SVNRepositoryImpl. getRevisionPropertyValue(long revision, java.lang.String propertyName)
Methods in org.tmatesoft.svn.core.internal.io.svn with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNRepositoryImpl. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.util
Methods in org.tmatesoft.svn.core.internal.util with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNSkel. prependPropertyValue(SVNPropertyValue propertyValue)
Method parameters in org.tmatesoft.svn.core.internal.util with type arguments of type SVNPropertyValue Modifier and Type Method Description static SVNSkel
SVNSkel. createPropList(java.util.Map<java.lang.String,SVNPropertyValue> props)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc
Methods in org.tmatesoft.svn.core.internal.wc that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
ISVNFileContentFetcher. getProperty(java.lang.String propertyName)
static SVNPropertyValue
SVNPropertiesManager. getProperty(SVNWCAccess access, java.io.File path, java.lang.String propName)
static SVNPropertyValue
SVNPropertiesManager. getWCProperty(SVNWCAccess access, java.io.File path, java.lang.String propName)
SVNPropertyValue
SVNCommitMediator. getWorkspaceProperty(java.lang.String path, java.lang.String name)
SVNPropertyValue
SVNImportMediator. getWorkspaceProperty(java.lang.String path, java.lang.String name)
static SVNPropertyValue
SVNPropertiesManager. validatePropertyValue(java.lang.Object path, SVNNodeKind kind, java.lang.String name, SVNPropertyValue value, boolean force, ISVNOptions options, ISVNFileContentFetcher fileContentFetcher)
Methods in org.tmatesoft.svn.core.internal.wc that return types with arguments of type SVNPropertyValue Modifier and Type Method Description static java.util.Map<java.lang.String,SVNPropertyValue>
SVNExternalsUtil. resolvePinnedExternals(SVNWCContext context, SvnRepositoryAccess repositoryAccess, java.util.Map<SvnTarget,java.util.List<SVNExternal>> externalsToPin, SvnTarget pairSource, SvnTarget pairDst, long pairSourceRevision, SVNRepository svnRepository, SVNURL reposRootUrl)
Methods in org.tmatesoft.svn.core.internal.wc with parameters of type SVNPropertyValue Modifier and Type Method Description static void
SVNWCProperties. appendProperty(java.lang.String name, SVNPropertyValue value, java.io.OutputStream target)
void
SVNAmbientDepthFilterEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNCancellableEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNDepthFilterEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNDiffStatusEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNDumpEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNExportEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNNodeEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNRemoteDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNRemoteStatusEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNSynchronizeEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNUpdateEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNUpdateEditor15. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNAmbientDepthFilterEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SVNCancellableEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNDepthFilterEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNDiffEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNDiffStatusEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNDumpEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNExportEditor. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)
void
SVNNodeEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNRemoteDiffEditor. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)
void
SVNRemoteStatusEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNSynchronizeEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNUpdateEditor. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)
void
SVNUpdateEditor15. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)
void
DefaultDumpFilterHandler. setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
void
DefaultLoadHandler. setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
void
ISVNLoadHandler. setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
static boolean
SVNPropertiesManager. setProperty(SVNWCAccess access, java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean skipChecks)
void
SVNWCProperties. setPropertyValue(java.lang.String name, SVNPropertyValue value)
void
DefaultDumpFilterHandler. setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
void
DefaultLoadHandler. setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
void
ISVNLoadHandler. setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
static boolean
SVNPropertiesManager. setWCProperty(SVNWCAccess access, java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean write)
void
SVNCommitMediator. setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNImportMediator. setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
static SVNPropertyValue
SVNPropertiesManager. validatePropertyValue(java.lang.Object path, SVNNodeKind kind, java.lang.String name, SVNPropertyValue value, boolean force, ISVNOptions options, ISVNFileContentFetcher fileContentFetcher)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc.admin
Methods in org.tmatesoft.svn.core.internal.wc.admin that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SVNProperties13. getPropertyValue(java.lang.String name)
SVNPropertyValue
SVNProperties14. getPropertyValue(java.lang.String name)
SVNPropertyValue
SVNSimpleVersionedPropertiesImpl. getPropertyValue(java.lang.String name)
abstract SVNPropertyValue
SVNVersionedProperties. getPropertyValue(java.lang.String name)
Methods in org.tmatesoft.svn.core.internal.wc.admin with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNVersionedProperties. setPropertyValue(java.lang.String name, SVNPropertyValue value)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc16
Methods in org.tmatesoft.svn.core.internal.wc16 with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNWCClient16. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean force, boolean recursive, ISVNPropertyHandler handler)
void
SVNWCClient16. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean skipChecks, SVNDepth depth, ISVNPropertyHandler handler, java.util.Collection changeLists)
SetspropName
topropValue
onpath
.SVNCommitInfo
SVNWCClient16. doSetProperty(SVNURL url, java.lang.String propName, SVNPropertyValue propValue, SVNRevision baseRevision, java.lang.String commitMessage, SVNProperties revisionProperties, boolean skipChecks, ISVNPropertyHandler handler)
SetspropName
topropValue
onpath
.void
SVNWCClient16. doSetRevisionProperty(java.io.File path, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)
SetpropName
topropValue
on revisionrevision
in the repository represented bypath
.void
SVNWCClient16. doSetRevisionProperty(SVNURL url, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)
SetpropName
topropValue
on revisionrevision
in the repository represented bypath
.protected void
SVNBasicDelegate. setCommitItemProperty(SVNCommitItem item, java.lang.String name, SVNPropertyValue value)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc17
Methods in org.tmatesoft.svn.core.internal.wc17 that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SVNWCContext. getPropertyValue(java.io.File localAbsPath, java.lang.String name)
SVNPropertyValue
SVNCommitMediator17. getWorkspaceProperty(java.lang.String path, java.lang.String name)
Methods in org.tmatesoft.svn.core.internal.wc17 with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNAmbientDepthFilterEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNDiffEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNRemoteStatusEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNUpdateEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SVNAmbientDepthFilterEditor17. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SVNDiffEditor17. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
void
SVNRemoteStatusEditor17. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SVNUpdateEditor17. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SVNCommitMediator17. setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc17.db
Methods in org.tmatesoft.svn.core.internal.wc17.db with parameters of type SVNPropertyValue Modifier and Type Method Description static void
SvnWcDbConflicts. addPropConflict(SVNSkel skel, java.lang.String propName, SVNPropertyValue originalVal, SVNPropertyValue mineVal, SVNPropertyValue incomingVal, SVNPropertyValue incomingBaseVal)
void
SvnExternalUpdateEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SvnExternalUpdateEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
static void
SvnWcDbConflicts. prependPropValue(SVNPropertyValue fromVal, SVNSkel skel)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc2.admin
Methods in org.tmatesoft.svn.core.internal.wc2.admin that return SVNPropertyValue Modifier and Type Method Description protected SVNPropertyValue
SvnRepositoryGetPropertyImpl. run()
protected SVNPropertyValue
SvnRepositoryGetRevisionPropertyImpl. run()
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc2.ng
Methods in org.tmatesoft.svn.core.internal.wc2.ng with parameters of type SVNPropertyValue Modifier and Type Method Description void
SvnDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SvnNgRemoteDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SvnNgRemoteDiffEditor2. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SvnNgRemoteMergeEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
void
SvnDiffEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SvnNgRemoteDiffEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SvnNgRemoteDiffEditor2. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SvnNgRemoteMergeEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
static void
SvnNgPropertiesManager. checkPropertyName(java.lang.String propertyName, SVNPropertyValue propertyValue)
static java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.String>>
SvnNgPropertiesManager. parseAutoProperties(SVNPropertyValue autoProperties, java.util.Map<java.lang.String,java.util.Map<java.lang.String,java.lang.String>> target)
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)
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, SVNNodeKind kind, java.lang.String propertyName, SVNPropertyValue value, ISvnPropertyValueProvider pvProvider, boolean skipChecks, ISVNEventHandler eventHandler, ISvnObjectReceiver<SVNPropertyData> receiver)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.internal.wc2.patch
Methods in org.tmatesoft.svn.core.internal.wc2.patch that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SvnPropertiesPatchTarget. getPatchedValue()
SVNPropertyValue
SvnPropertiesPatchTarget. getValue()
Methods in org.tmatesoft.svn.core.internal.wc2.patch with parameters of type SVNPropertyValue Modifier and Type Method Description void
SvnPropertiesPatchTarget. setPatchedValue(SVNPropertyValue patchedValue)
void
SvnPropertiesPatchTarget. setValue(SVNPropertyValue value)
-
Uses of SVNPropertyValue in org.tmatesoft.svn.core.io
Methods in org.tmatesoft.svn.core.io that return SVNPropertyValue Modifier and Type Method Description abstract SVNPropertyValue
SVNRepository. getRevisionPropertyValue(long revision, java.lang.String propertyName)
Gets the value of an unversioned property.SVNPropertyValue
ISVNWorkspaceMediator. getWorkspaceProperty(java.lang.String path, java.lang.String name)
Retrieves an item's WC property from a".svn/wcprops"
administrative subdirectory.Methods in org.tmatesoft.svn.core.io with parameters of type SVNPropertyValue Modifier and Type Method Description void
ISVNEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
Changes the value of a property of the currently opened/added directory.void
ISVNEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)
Changes the value of a property of the currently opened/added file.void
ISVNFileCheckoutTarget. filePropertyChanged(java.lang.String path, java.lang.String name, SVNPropertyValue value)
Receives and handles a next file property.abstract void
SVNRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)
Sets a revision property with the specified name to a new value.void
ISVNWorkspaceMediator. setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
Sets a new value for an item's WC property in a".svn/wcprops"
administrative subdirectory. -
Uses of SVNPropertyValue in org.tmatesoft.svn.core.replicator
Methods in org.tmatesoft.svn.core.replicator with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNReplicationEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)
Changes a property of the current directory.void
SVNReplicationEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)
Changes file property. -
Uses of SVNPropertyValue in org.tmatesoft.svn.core.wc
Methods in org.tmatesoft.svn.core.wc that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SVNPropertyData. getValue()
Gets the value of the property represented by this SVNPropertyData object.Methods in org.tmatesoft.svn.core.wc with parameters of type SVNPropertyValue Modifier and Type Method Description void
SVNWCClient. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean force, boolean recursive, ISVNPropertyHandler handler)
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)
SetspropName
topropValue
onpath
.SVNCommitInfo
SVNWCClient. doSetProperty(SVNURL url, java.lang.String propName, SVNPropertyValue propValue, SVNRevision baseRevision, java.lang.String commitMessage, SVNProperties revisionProperties, boolean skipChecks, ISVNPropertyHandler handler)
SetspropName
topropValue
onpath
.void
SVNWCClient. doSetRevisionProperty(java.io.File path, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)
SetpropName
topropValue
on revisionrevision
in the repository represented bypath
.void
SVNWCClient. doSetRevisionProperty(SVNURL url, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)
SetpropName
topropValue
on revisionrevision
in the repository represented bypath
.void
SVNCommitItem. setIncomingProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
void
SVNCommitItem. setProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
Constructors in org.tmatesoft.svn.core.wc with parameters of type SVNPropertyValue Constructor Description SVNPropertyData(java.lang.String name, SVNPropertyValue data, ISVNOptions options)
Constructs an SVNPropertyData given a property name and its value. -
Uses of SVNPropertyValue in org.tmatesoft.svn.core.wc.admin
Methods in org.tmatesoft.svn.core.wc.admin that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SVNLookClient. doGetProperty(java.io.File repositoryRoot, java.lang.String propName, java.lang.String path, java.lang.String transactionName)
Returns the value of a versioned property for the specified path in the given transaction.SVNPropertyValue
SVNLookClient. doGetProperty(java.io.File repositoryRoot, java.lang.String propName, java.lang.String path, SVNRevision revision)
Returns the value of a versioned property for the specified path in the given revision.SVNPropertyValue
SVNLookClient. doGetRevisionProperty(java.io.File repositoryRoot, java.lang.String propName, java.lang.String transactionName)
Returns the value of a revision property for the given transaction.SVNPropertyValue
SVNLookClient. doGetRevisionProperty(java.io.File repositoryRoot, java.lang.String propName, SVNRevision revision)
Returns the value of a revision property in the given revision. -
Uses of SVNPropertyValue in org.tmatesoft.svn.core.wc2
Methods in org.tmatesoft.svn.core.wc2 that return SVNPropertyValue Modifier and Type Method Description SVNPropertyValue
SvnRemoteSetProperty. getOriginalPropertyValue()
Returns property's original value, it was set by callerSVNPropertyValue
SvnRemoteSetProperty. getPropertyValue()
Returns the property's value.SVNPropertyValue
SvnSetProperty. getPropertyValue()
Returns property value.Methods in org.tmatesoft.svn.core.wc2 that return types with arguments of type SVNPropertyValue Modifier and Type Method Description java.util.Map<java.lang.String,SVNPropertyValue>
SvnCommitItem. getIncomingProperties()
java.util.Map<java.lang.String,SVNPropertyValue>
SvnCommitItem. getOutgoingProperties()
Returns all properties that should be committed within the item.Methods in org.tmatesoft.svn.core.wc2 with parameters of type SVNPropertyValue Modifier and Type Method Description void
SvnCommitItem. addIncomingProperty(java.lang.String name, SVNPropertyValue value)
void
SvnCommitItem. addOutgoingProperty(java.lang.String name, SVNPropertyValue value)
Adds property with the name and the value that should be committed within the item.void
SvnRemoteSetProperty. setOriginalPropertyValue(SVNPropertyValue originalPropertyValue)
Sets property's original value to hold this information for the callervoid
SvnRemoteSetProperty. setPropertyValue(SVNPropertyValue propertyValue)
Sets the property's value.void
SvnSetProperty. setPropertyValue(SVNPropertyValue propertyValue)
Sets property valuevoid
AbstractSvnCommit. setRevisionProperty(java.lang.String name, SVNPropertyValue value)
Adds custom revision properties for the operation.
-