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 PropertyDataJavaHLObjectFactory. 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 voidSVNPropertiesCommand. checkBooleanProperty(java.lang.String name, SVNPropertyValue value)protected voidSVNPropertiesCommand. 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 SVNPropertyValueSVNProperty. BOOLEAN_PROPERTY_VALUEDefault 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 SVNPropertyValueSVNPropertyValue. create(char[] propertyValue, java.lang.String encoding)Creates a new property value object representing a text property value.static SVNPropertyValueSVNPropertyValue. create(java.lang.String propertyValue)Creates a new property value object representing a text property value.static SVNPropertyValueSVNPropertyValue. create(java.lang.String propertyName, byte[] data)Creates a new property value object from the given byte array.static SVNPropertyValueSVNPropertyValue. create(java.lang.String propertyName, byte[] data, int offset, int length)Creates a new property value object from the given byte array.SVNPropertyValueSVNProperties. getSVNPropertyValue(java.lang.String propertyName)Returns a property value as anSVNPropertyValue.static SVNPropertyValueSVNProperty. getValueOfBooleanProperty(java.lang.String propName)Returns the value for such boolean properties as "svn:executable", "svn:needs-lock" and "svn:special".SVNPropertyValueSVNProperties. 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 booleanSVNPropertyValue. areEqual(SVNPropertyValue propertyValue1, SVNPropertyValue propertyValue2)booleanSVNProperties. 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)ReturnsStringrepresentation ofvalue.static java.lang.StringSVNPropertyValue. getPropertyAsString(SVNPropertyValue value)ReturnsStringrepresentation ofvalue.voidSVNProperties. put(java.lang.String propertyName, SVNPropertyValue propertyValue)Stores a new mappingpropertyNametopropertyValuein 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 SVNPropertyValueDAVProperties. getPropertyValue(DAVElement name)SVNPropertyValueDAVRepository. 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 voidDAVProperties. setProperty(DAVElement name, SVNPropertyValue value)voidDAVRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)static voidDAVUtil. setSpecialWCProperties(ISVNEditor editor, boolean isDir, java.lang.String path, DAVElement property, SVNPropertyValue propValue)static voidDAVUtil. setSpecialWCProperties(SVNProperties props, DAVElement property, SVNPropertyValue propValue)Deprecated.for binary compatibility onlystatic voidDAVUtil. 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 SVNPropertyValueBasicDAVHandler. createPropertyValue(DAVElement element, java.lang.String propertyName, java.lang.StringBuffer cdata, java.lang.String encoding)protected SVNPropertyValueBasicDAVHandler. 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.StringBufferDAVProppatchHandler. 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 SVNPropertyValueFSRepository. 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 voidFSCommitEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidFSCommitEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidFSCommitter. changeNodeProperty(java.lang.String path, java.lang.String name, SVNPropertyValue propValue)voidFSFS. setRevisionProperty(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)voidFSRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)voidFSRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue, boolean bypassHooks)voidFSRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue, boolean bypassPreRevpropHook, boolean bypassPostRevpropHook)voidFSFS. setTransactionProperty(java.lang.String txnID, java.lang.String name, SVNPropertyValue propertyValue)static voidFSRepositoryUtil. 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 SVNPropertyValueSVNRepositoryImpl. 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 voidSVNRepositoryImpl. 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 voidSVNSkel. prependPropertyValue(SVNPropertyValue propertyValue)Method parameters in org.tmatesoft.svn.core.internal.util with type arguments of type SVNPropertyValue Modifier and Type Method Description static SVNSkelSVNSkel. 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 SVNPropertyValueISVNFileContentFetcher. getProperty(java.lang.String propertyName)static SVNPropertyValueSVNPropertiesManager. getProperty(SVNWCAccess access, java.io.File path, java.lang.String propName)static SVNPropertyValueSVNPropertiesManager. getWCProperty(SVNWCAccess access, java.io.File path, java.lang.String propName)SVNPropertyValueSVNCommitMediator. getWorkspaceProperty(java.lang.String path, java.lang.String name)SVNPropertyValueSVNImportMediator. getWorkspaceProperty(java.lang.String path, java.lang.String name)static SVNPropertyValueSVNPropertiesManager. 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 voidSVNWCProperties. appendProperty(java.lang.String name, SVNPropertyValue value, java.io.OutputStream target)voidSVNAmbientDepthFilterEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNCancellableEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNDepthFilterEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNDiffStatusEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNDumpEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNExportEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNNodeEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNRemoteDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNRemoteStatusEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNSynchronizeEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNUpdateEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNUpdateEditor15. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNAmbientDepthFilterEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSVNCancellableEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNDepthFilterEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNDiffEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNDiffStatusEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNDumpEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNExportEditor. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)voidSVNNodeEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNRemoteDiffEditor. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)voidSVNRemoteStatusEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNSynchronizeEditor. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNUpdateEditor. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)voidSVNUpdateEditor15. changeFileProperty(java.lang.String commitPath, java.lang.String name, SVNPropertyValue value)voidDefaultDumpFilterHandler. setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)voidDefaultLoadHandler. setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)voidISVNLoadHandler. setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)static booleanSVNPropertiesManager. setProperty(SVNWCAccess access, java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean skipChecks)voidSVNWCProperties. setPropertyValue(java.lang.String name, SVNPropertyValue value)voidDefaultDumpFilterHandler. setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)voidDefaultLoadHandler. setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)voidISVNLoadHandler. setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)static booleanSVNPropertiesManager. setWCProperty(SVNWCAccess access, java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean write)voidSVNCommitMediator. setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNImportMediator. setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)static SVNPropertyValueSVNPropertiesManager. 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 SVNPropertyValueSVNProperties13. getPropertyValue(java.lang.String name)SVNPropertyValueSVNProperties14. getPropertyValue(java.lang.String name)SVNPropertyValueSVNSimpleVersionedPropertiesImpl. getPropertyValue(java.lang.String name)abstract SVNPropertyValueSVNVersionedProperties. getPropertyValue(java.lang.String name)Methods in org.tmatesoft.svn.core.internal.wc.admin with parameters of type SVNPropertyValue Modifier and Type Method Description voidSVNVersionedProperties. 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 voidSVNWCClient16. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean force, boolean recursive, ISVNPropertyHandler handler)voidSVNWCClient16. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean skipChecks, SVNDepth depth, ISVNPropertyHandler handler, java.util.Collection changeLists)SetspropNametopropValueonpath.SVNCommitInfoSVNWCClient16. doSetProperty(SVNURL url, java.lang.String propName, SVNPropertyValue propValue, SVNRevision baseRevision, java.lang.String commitMessage, SVNProperties revisionProperties, boolean skipChecks, ISVNPropertyHandler handler)SetspropNametopropValueonpath.voidSVNWCClient16. doSetRevisionProperty(java.io.File path, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)SetpropNametopropValueon revisionrevisionin the repository represented bypath.voidSVNWCClient16. doSetRevisionProperty(SVNURL url, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)SetpropNametopropValueon revisionrevisionin the repository represented bypath.protected voidSVNBasicDelegate. 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 SVNPropertyValueSVNWCContext. getPropertyValue(java.io.File localAbsPath, java.lang.String name)SVNPropertyValueSVNCommitMediator17. 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 voidSVNAmbientDepthFilterEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNDiffEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNRemoteStatusEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNUpdateEditor17. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSVNAmbientDepthFilterEditor17. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSVNDiffEditor17. changeFileProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value)voidSVNRemoteStatusEditor17. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSVNUpdateEditor17. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSVNCommitMediator17. 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 voidSvnWcDbConflicts. addPropConflict(SVNSkel skel, java.lang.String propName, SVNPropertyValue originalVal, SVNPropertyValue mineVal, SVNPropertyValue incomingVal, SVNPropertyValue incomingBaseVal)voidSvnExternalUpdateEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSvnExternalUpdateEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)static voidSvnWcDbConflicts. 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 SVNPropertyValueSvnRepositoryGetPropertyImpl. run()protected SVNPropertyValueSvnRepositoryGetRevisionPropertyImpl. 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 voidSvnDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSvnNgRemoteDiffEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSvnNgRemoteDiffEditor2. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSvnNgRemoteMergeEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)voidSvnDiffEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSvnNgRemoteDiffEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSvnNgRemoteDiffEditor2. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)voidSvnNgRemoteMergeEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)static voidSvnNgPropertiesManager. 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 voidSvnNgPropertiesManager. 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 voidSvnNgPropertiesManager. 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 voidSvnNgPropertiesManager. 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 voidSvnNgPropertiesManager. 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 SVNPropertyValueSvnPropertiesPatchTarget. getPatchedValue()SVNPropertyValueSvnPropertiesPatchTarget. getValue()Methods in org.tmatesoft.svn.core.internal.wc2.patch with parameters of type SVNPropertyValue Modifier and Type Method Description voidSvnPropertiesPatchTarget. setPatchedValue(SVNPropertyValue patchedValue)voidSvnPropertiesPatchTarget. 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 SVNPropertyValueSVNRepository. getRevisionPropertyValue(long revision, java.lang.String propertyName)Gets the value of an unversioned property.SVNPropertyValueISVNWorkspaceMediator. 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 voidISVNEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)Changes the value of a property of the currently opened/added directory.voidISVNEditor. changeFileProperty(java.lang.String path, java.lang.String propertyName, SVNPropertyValue propertyValue)Changes the value of a property of the currently opened/added file.voidISVNFileCheckoutTarget. filePropertyChanged(java.lang.String path, java.lang.String name, SVNPropertyValue value)Receives and handles a next file property.abstract voidSVNRepository. setRevisionPropertyValue(long revision, java.lang.String propertyName, SVNPropertyValue propertyValue)Sets a revision property with the specified name to a new value.voidISVNWorkspaceMediator. 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 voidSVNReplicationEditor. changeDirProperty(java.lang.String name, SVNPropertyValue value)Changes a property of the current directory.voidSVNReplicationEditor. 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 SVNPropertyValueSVNPropertyData. 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 voidSVNWCClient. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean force, boolean recursive, ISVNPropertyHandler handler)voidSVNWCClient. doSetProperty(java.io.File path, java.lang.String propName, SVNPropertyValue propValue, boolean skipChecks, SVNDepth depth, ISVNPropertyHandler handler, java.util.Collection<java.lang.String> changeLists)SetspropNametopropValueonpath.SVNCommitInfoSVNWCClient. doSetProperty(SVNURL url, java.lang.String propName, SVNPropertyValue propValue, SVNRevision baseRevision, java.lang.String commitMessage, SVNProperties revisionProperties, boolean skipChecks, ISVNPropertyHandler handler)SetspropNametopropValueonpath.voidSVNWCClient. doSetRevisionProperty(java.io.File path, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)SetpropNametopropValueon revisionrevisionin the repository represented bypath.voidSVNWCClient. doSetRevisionProperty(SVNURL url, SVNRevision revision, java.lang.String propName, SVNPropertyValue propValue, boolean force, ISVNPropertyHandler handler)SetpropNametopropValueon revisionrevisionin the repository represented bypath.voidSVNCommitItem. setIncomingProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)voidSVNCommitItem. 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 SVNPropertyValueSVNLookClient. 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.SVNPropertyValueSVNLookClient. 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.SVNPropertyValueSVNLookClient. doGetRevisionProperty(java.io.File repositoryRoot, java.lang.String propName, java.lang.String transactionName)Returns the value of a revision property for the given transaction.SVNPropertyValueSVNLookClient. 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 SVNPropertyValueSvnRemoteSetProperty. getOriginalPropertyValue()Returns property's original value, it was set by callerSVNPropertyValueSvnRemoteSetProperty. getPropertyValue()Returns the property's value.SVNPropertyValueSvnSetProperty. 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 voidSvnCommitItem. addIncomingProperty(java.lang.String name, SVNPropertyValue value)voidSvnCommitItem. addOutgoingProperty(java.lang.String name, SVNPropertyValue value)Adds property with the name and the value that should be committed within the item.voidSvnRemoteSetProperty. setOriginalPropertyValue(SVNPropertyValue originalPropertyValue)Sets property's original value to hold this information for the callervoidSvnRemoteSetProperty. setPropertyValue(SVNPropertyValue propertyValue)Sets the property's value.voidSvnSetProperty. setPropertyValue(SVNPropertyValue propertyValue)Sets property valuevoidAbstractSvnCommit. setRevisionProperty(java.lang.String name, SVNPropertyValue value)Adds custom revision properties for the operation.
-