org.tmatesoft.svn.core
public class SVNLogEntry extends Object implements Serializable
Version: 1.1.1
See Also: SVNLogEntryPath ISVNLogEntryHandler Examples
Constructor Summary | |
---|---|
SVNLogEntry(Map changedPaths, long revision, String author, Date date, String message)
Constructs an SVNLogEntry object.
|
Method Summary | |
---|---|
boolean | equals(Object obj)
Compares this object with another one.
|
String | getAuthor()
Returns the author of the revision that this object represents.
|
Map | getChangedPaths()
Gets a map containing all the paths that were changed in the
revision that this object represents.
|
Date | getDate()
Gets the datestamp when the revision was committed.
|
String | getMessage()
Gets the log message attached to the revision.
|
long | getRevision()
Gets the number of the revision that this object represents.
|
int | hashCode()
Calculates and returns a hash code for this object.
|
String | toString()
Gives a string representation of this oobject.
|
Parameters: changedPaths a map collection which keys are
all the paths that were changed in
revision
, and values are
SVNLogEntryPath representation objects revision a revision number author the author of revision
date the datestamp when the revision was committed message an commit log message for revision
See Also: SVNLogEntryPath
Parameters: obj an object to compare with
Returns: true
if this object is the same as the obj
argument
Returns: the author of the revision
Returns: a map which keys are all the paths that were changed and values are SVNLogEntryPath objects
Returns: the moment in time when the revision was committed
Returns: the commit log message
Returns: a revision number
Returns: a hash code
Returns: a string representing this object