| |
|
| java.lang.Object org.tmatesoft.svn.core.wc.SVNPropertyData
SVNPropertyData | public class SVNPropertyData (Code) | | SVNPropertyData is a wrapper for both versioned and unversioned
properties. This class represents the pair: property name - property value.
Property managing methods of the SVNWCClient class use
SVNPropertyData to wrap properties and dispatch them to
handleProperty() methods of ISVNPropertyHandler for processing
or simply return that 'properties object' as a target.
version: 1.1.1 author: TMate Software Ltd. See Also: ISVNPropertyHandler See Also: SVNWCClient |
Constructor Summary | |
public | SVNPropertyData(String name, String data) Constructs an SVNPropertyData given a property name and its
value. |
Method Summary | |
public String | getName() Gets the name of the property represented by this
SVNPropertyData object. | public String | getValue() Gets the value of the property represented by this
SVNPropertyData object. |
SVNPropertyData | public SVNPropertyData(String name, String data)(Code) | | Constructs an SVNPropertyData given a property name and its
value.
Parameters: name - a property name Parameters: data - a property value |
getName | public String getName()(Code) | | Gets the name of the property represented by this
SVNPropertyData object.
a property name |
getValue | public String getValue()(Code) | | Gets the value of the property represented by this
SVNPropertyData object.
a property value |
|
|
|