| java.lang.Object org.tigris.subversion.javahl.LogMessage
LogMessage | public class LogMessage (Code) | | this class describes a single subversion revision with log message,
author and date
|
LogMessage | LogMessage(String m, Date d, long r, String a, ChangePath[] cp)(Code) | | this constructor is only called only from JNI code
Parameters: m - the log message text Parameters: d - the date of the commit Parameters: r - the number of the revision Parameters: a - the author of the commit Parameters: cp - the items changed by this commit |
getAuthor | public String getAuthor()(Code) | | Returns the author of the commit
the author of the commit |
getChangedPaths | public ChangePath[] getChangedPaths()(Code) | | Returns the changes items by this commit
the changes items by this commit |
getDate | public Date getDate()(Code) | | Returns the date of the commit
the date of the commit |
getMessage | public String getMessage()(Code) | | Return the log message text
the log message text |
getRevision | public Revision.Number getRevision()(Code) | | Returns the revision as a Revision object
the revision number as a Revision object |
getRevisionNumber | public long getRevisionNumber()(Code) | | Returns the revision as a long integer
the revision number as a long integer |
|
|