|
SVNKit Home | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.tmatesoft.svn.core.SVNLogEntry
public class SVNLogEntry
The SVNLogEntry class encapsulates such per revision information as: a revision number, the datestamp when the revision was committed, the author of the revision, a commit log message and all paths changed in that revision.
SVNLogEntryPath
,
ISVNLogEntryHandler
,
Examples,
Serialized FormConstructor 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. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public SVNLogEntry(Map changedPaths, long revision, String author, Date date, String message)
changedPaths
- a map collection which keys are
all the paths that were changed in
revision
, and values are
SVNLogEntryPath representation objectsrevision
- a revision numberauthor
- the author of revision
date
- the datestamp when the revision was committedmessage
- an commit log message for revision
SVNLogEntryPath
Method Detail |
---|
public Map getChangedPaths()
public String getAuthor()
public Date getDate()
public String getMessage()
public long getRevision()
public int hashCode()
hashCode
in class Object
public boolean equals(Object obj)
equals
in class Object
obj
- an object to compare with
obj
argumentpublic String toString()
toString
in class Object
|
SVNKit Home | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |