Package org.tmatesoft.svn.core.io
Interface ISVNWorkspaceMediator
-
public interface ISVNWorkspaceMediatorThe ISVNWorkspaceMediator interface is used for temporary data storage (mainly instructions and new text data for deltas) as well as for caching and getting some kind of wcprops.- Since:
- 1.2
- Version:
- 1.3
- Author:
- TMate Software Ltd.
- See Also:
SVNRepository.getCommitEditor(String, java.util.Map, boolean, org.tmatesoft.svn.core.SVNProperties, ISVNWorkspaceMediator), Examples
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SVNPropertyValuegetWorkspaceProperty(java.lang.String path, java.lang.String name)Retrieves an item's WC property from a".svn/wcprops"administrative subdirectory.voidsetWorkspaceProperty(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.
-
-
-
Method Detail
-
getWorkspaceProperty
SVNPropertyValue getWorkspaceProperty(java.lang.String path, java.lang.String name) throws SVNException
Retrieves an item's WC property from a".svn/wcprops"administrative subdirectory.- Parameters:
path- a WC item's pathname- a property name- Returns:
- the value for the property
- Throws:
SVNException- See Also:
setWorkspaceProperty(String, String, SVNPropertyValue)
-
setWorkspaceProperty
void setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value) throws SVNExceptionSets a new value for an item's WC property in a".svn/wcprops"administrative subdirectory.- Parameters:
path- a WC item's pathname- a property namevalue- a value for the property- Throws:
SVNException- See Also:
getWorkspaceProperty(String, String)
-
-