Interface ISVNProperty
public interface ISVNProperty
An interface describing a subversion property (e.g. as return by svn propget)
- Author:
- Cédric Chabanois cchabanois@ifrance.com
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
how the end of line code should be treated during retrievalstatic final String
flag if the file should be made excutable during retrievalstatic final String
value for svn:executablestatic final String
list of directory managed outside of this working copystatic final String
list of filenames with wildcards which should be ignored by add and statusstatic final String
list of keywords to be expanded during retrievalstatic final String
mime type of the entry, used to flag binary filesstatic final String
the author of the revisionstatic final String
the date of the revisionstatic final String
the log message of the revisionstatic final String
the original date of the revision -
Method Summary
-
Field Details
-
MIME_TYPE
mime type of the entry, used to flag binary files- See Also:
-
IGNORE
list of filenames with wildcards which should be ignored by add and status- See Also:
-
EOL_STYLE
how the end of line code should be treated during retrieval- See Also:
-
KEYWORDS
list of keywords to be expanded during retrieval- See Also:
-
EXECUTABLE
flag if the file should be made excutable during retrieval- See Also:
-
EXECUTABLE_VALUE
value for svn:executable- See Also:
-
EXTERNALS
list of directory managed outside of this working copy- See Also:
-
REV_AUTHOR
the author of the revision- See Also:
-
REV_LOG
the log message of the revision- See Also:
-
REV_DATE
the date of the revision- See Also:
-
REV_ORIGINAL_DATE
the original date of the revision- See Also:
-
-
Method Details
-
getName
String getName()- Returns:
- the name of the property
-
getValue
String getValue()Returns the string value of the property. There is no protocol if a property is a string or a binary value- Returns:
- the string value
-
getFile
File getFile()- Returns:
- the file this property belongs to (or null if on remote resource)
-
getUrl
SVNUrl getUrl()- Returns:
- the url this property belongs to
-
getData
byte[] getData()Returns the byte array value of the property There is no protocol if a property is a string or a binary value- Returns:
- the byte array value
-