public class LogMessage
extends java.lang.Object
implements java.io.Serializable
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
author
The author of the commit.
|
private ChangePath[] |
changedPaths
The items changed by this commit (only set when
SVNClientInterface.logMessages is used with discoverPaths
true).
|
private java.util.Date |
date
The date of the commit.
|
private java.lang.String |
message
The log message for the revision.
|
private long |
revision
The number of the revision.
|
private static long |
serialVersionUID |
private long |
timeMicros
The time of the commit measured in the number of microseconds
since 00:00:00 January 1, 1970 UTC.
|
Constructor and Description |
---|
LogMessage(ChangePath[] cp,
long r,
java.lang.String a,
java.util.Date d,
java.lang.String m)
Deprecated.
Use the constructor that takes the number
of microseconds since 00:00:00 January 1,
1970 UTC
|
LogMessage(ChangePath[] cp,
long r,
java.lang.String a,
long t,
java.lang.String m)
This constructor is only called only from the thin wrapper.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAuthor()
Returns the author of the commit
|
ChangePath[] |
getChangedPaths()
Returns the changes items by this commit
|
java.util.Date |
getDate()
Returns the date of the commit
|
java.lang.String |
getMessage()
Return the log message text
|
Revision.Number |
getRevision()
Returns the revision as a Revision object
|
long |
getRevisionNumber()
Returns the revision as a long integer
|
long |
getTimeMicros()
Returns the time of the commit
|
long |
getTimeMillis()
Returns the time of the commit
|
private static final long serialVersionUID
private java.lang.String message
private long timeMicros
private java.util.Date date
private long revision
private java.lang.String author
private ChangePath[] changedPaths
LogMessage(ChangePath[] cp, long r, java.lang.String a, java.util.Date d, java.lang.String m)
changedPaths
- the items changed by this commitrevision
- the number of the revisionauthor
- the author of the commitdate
- the date of the commitmessage
- the log message textLogMessage(ChangePath[] cp, long r, java.lang.String a, long t, java.lang.String m)
changedPaths
- the items changed by this commitrevision
- the number of the revisionauthor
- the author of the committimeMicros
- the time of the commit measured in the
number of microseconds since 00:00:00
January 1, 1970 UTCmessage
- the log message textpublic java.lang.String getMessage()
public long getTimeMicros()
public long getTimeMillis()
public java.util.Date getDate()
public Revision.Number getRevision()
public long getRevisionNumber()
public java.lang.String getAuthor()
public ChangePath[] getChangedPaths()