Package org.tigris.subversion.javahl
Class JavaHLPropertyData
- java.lang.Object
-
- org.tigris.subversion.javahl.PropertyData
-
- org.tigris.subversion.javahl.JavaHLPropertyData
-
public class JavaHLPropertyData extends PropertyData
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description private SVNClientImpl
myClientImpl
-
Fields inherited from class org.tigris.subversion.javahl.PropertyData
EOL_STYLE, EXECUTABLE, EXECUTABLE_VALUE, EXTERNALS, IGNORE, KEYWORDS, MIME_TYPE, NEEDS_LOCK, REV_AUTHOR, REV_DATE, REV_LOG, REV_ORIGINAL_DATE
-
-
Constructor Summary
Constructors Constructor Description JavaHLPropertyData(SVNClientImpl clientImpl, SVNClient cl, java.lang.String p, java.lang.String n, java.lang.String v, byte[] d)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
remove(boolean recurse)
remove this property from subversionvoid
setValue(byte[] newValue, boolean recurse)
modify the byte array value of a property The string array value is clearedvoid
setValue(java.lang.String newValue, boolean recurse)
modify the string value of a property The byte array value is cleared-
Methods inherited from class org.tigris.subversion.javahl.PropertyData
getData, getName, getPath, getValue
-
-
-
-
Field Detail
-
myClientImpl
private SVNClientImpl myClientImpl
-
-
Constructor Detail
-
JavaHLPropertyData
JavaHLPropertyData(SVNClientImpl clientImpl, SVNClient cl, java.lang.String p, java.lang.String n, java.lang.String v, byte[] d)
-
-
Method Detail
-
remove
public void remove(boolean recurse) throws ClientException
Description copied from class:PropertyData
remove this property from subversion- Overrides:
remove
in classPropertyData
- Parameters:
recurse
- if operation should recurse directories- Throws:
ClientException
-
setValue
public void setValue(byte[] newValue, boolean recurse) throws ClientException
Description copied from class:PropertyData
modify the byte array value of a property The string array value is cleared- Overrides:
setValue
in classPropertyData
- Parameters:
newValue
- the new byte array valuerecurse
- if operation should recurse directories- Throws:
ClientException
-
setValue
public void setValue(java.lang.String newValue, boolean recurse) throws ClientException
Description copied from class:PropertyData
modify the string value of a property The byte array value is cleared- Overrides:
setValue
in classPropertyData
- Parameters:
newValue
- the new string valuerecurse
- if operation should recurse directories- Throws:
ClientException
-
-