| java.lang.Object org.tigris.subversion.javahl.DirEntry
DirEntry | public class DirEntry (Code) | | A general subversion directory entry. Used for SVNClientInterface.list
author: Cédric Chabanois author: cchabanois@ifrance.com |
Constructor Summary | |
| DirEntry(String path, int nodeKind, long size, boolean hasProps, long lastChangedRevision, long lastChanged, String lastAuthor) |
DirEntry | DirEntry(String path, int nodeKind, long size, boolean hasProps, long lastChangedRevision, long lastChanged, String lastAuthor)(Code) | | this constructor is only called from the JNI code
Parameters: path - the pathname of the entry Parameters: nodeKind - the kind of entry (file or directory) Parameters: size - the size of the file Parameters: hasProps - if the entry has properties managed bysubversion Parameters: lastChangedRevision - the revision number of the last change Parameters: lastChanged - the date of the last change Parameters: lastAuthor - the author of the last change |
getHasProps | public boolean getHasProps()(Code) | | Returns if the entry has properties managed by Subversion.
if the entry has properties managed by subversion. |
getLastAuthor | public String getLastAuthor()(Code) | | Returns the author of the last change.
the author of the last change. |
getLastChanged | public Date getLastChanged()(Code) | | Returns the last time the file was changed.
the last time the file was changed. |
getLastChangedRevision | public Revision.Number getLastChangedRevision()(Code) | | Returns the revision of the last change.
revision of the last change as a Revision object. |
getLastChangedRevisionNumber | public long getLastChangedRevisionNumber()(Code) | | Returns the revision number of the last change.
revision number of the last change. |
getNodeKind | public int getNodeKind()(Code) | | Return the kind of entry (file or directory)
the kind of the entry (file or directory) see NodeKind class |
getPath | public String getPath()(Code) | | Returns the path of the entry.
the path of the entry. |
getSize | public long getSize()(Code) | | Return the length of file test or 0 for directories
length of file text, or 0 for directories |
|
|