org.tigris.subversion.javahl
public class PropertyData extends Object
Field Summary | |
---|---|
static String | EOL_STYLE
how the end of line code should be treated during retrieval |
static String | EXECUTABLE
flag if the file should be made excutable during retrieval |
static String | EXECUTABLE_VALUE
value for svn:executable |
static String | EXTERNALS
list of directory managed outside of this working copy |
static String | IGNORE
list of filenames with wildcards which should be ignored by add and
status |
static String | KEYWORDS
list of keywords to be expanded during retrieval |
static String | MIME_TYPE
mime type of the entry, used to flag binary files |
static String | NEEDS_LOCK |
static String | REV_AUTHOR
the author of the revision |
static String | REV_DATE
the date of the revision |
static String | REV_LOG
the log message of the revision |
static String | REV_ORIGINAL_DATE
the original date of the revision |
Method Summary | |
---|---|
byte[] | getData()
Returns the byte array value of the property
There is no protocol if a property is a string or a binary value |
String | getName()
Returns the name of the property |
String | getPath()
Return the path of the item which owns this property |
String | getValue()
Returns the string value of the property.
|
void | remove(boolean recurse)
remove this property from subversion |
void | setValue(String newValue, boolean recurse)
modify the string value of a property
The byte array value is cleared |
void | setValue(byte[] newValue, boolean recurse)
modify the byte array value of a property
The string array value is cleared |
Since: 1.2 flag property if a lock is needed to modify this node
Returns: the byte array value
Returns: the name
Returns: the path
Returns: the string value
Parameters: recurse if operation should recurse directories
Throws: ClientException
Parameters: newValue the new string value recurse if operation should recurse directories
Throws: ClientException
Parameters: newValue the new byte array value recurse if operation should recurse directories
Throws: ClientException