Class SVNImportMediator
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc.SVNImportMediator
-
- All Implemented Interfaces:
ISVNWorkspaceMediator
public class SVNImportMediator extends java.lang.Object implements ISVNWorkspaceMediator
- Version:
- 1.3
-
-
Constructor Summary
Constructors Constructor Description SVNImportMediator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SVNPropertyValue
getWorkspaceProperty(java.lang.String path, java.lang.String name)
Retrieves an item's WC property from a".svn/wcprops"
administrative subdirectory.void
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.
-
-
-
Method Detail
-
getWorkspaceProperty
public SVNPropertyValue getWorkspaceProperty(java.lang.String path, java.lang.String name) throws SVNException
Description copied from interface:ISVNWorkspaceMediator
Retrieves an item's WC property from a".svn/wcprops"
administrative subdirectory.- Specified by:
getWorkspaceProperty
in interfaceISVNWorkspaceMediator
- Parameters:
path
- a WC item's pathname
- a property name- Returns:
- the value for the property
- Throws:
SVNException
- See Also:
ISVNWorkspaceMediator.setWorkspaceProperty(String, String, SVNPropertyValue)
-
setWorkspaceProperty
public void setWorkspaceProperty(java.lang.String path, java.lang.String name, SVNPropertyValue value) throws SVNException
Description copied from interface:ISVNWorkspaceMediator
Sets a new value for an item's WC property in a".svn/wcprops"
administrative subdirectory.- Specified by:
setWorkspaceProperty
in interfaceISVNWorkspaceMediator
- Parameters:
path
- a WC item's pathname
- a property namevalue
- a value for the property- Throws:
SVNException
- See Also:
ISVNWorkspaceMediator.getWorkspaceProperty(String, String)
-
-