| java.lang.Object org.tmatesoft.svn.core.SVNLogEntry
SVNLogEntry | public class SVNLogEntry implements Serializable(Code) | | 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.
version: 1.1.1 author: TMate Software Ltd. See Also: SVNLogEntryPath See Also: ISVNLogEntryHandler See Also: Examples |
Method Summary | |
static boolean | compare(Object o1, Object o2) Compares two objects. | public boolean | equals(Object obj) Compares this object with another one. | public String | getAuthor() Returns the author of the revision that this object represents. | public Map | getChangedPaths() Gets a map containing all the paths that were changed in the
revision that this object represents. | public Date | getDate() Gets the datestamp when the revision was committed. | public String | getMessage() Gets the log message attached to the revision. | public long | getRevision() Gets the number of the revision that this object represents. | public int | hashCode() Calculates and returns a hash code for this object. | public String | toString() Gives a string representation of this oobject. |
SVNLogEntry | public SVNLogEntry(Map changedPaths, long revision, String author, Date date, String message)(Code) | | Constructs an SVNLogEntry object.
Parameters: changedPaths - a map collection which keys areall the paths that were changed in revision , and values are SVNLogEntryPath representation objects Parameters: revision - a revision number Parameters: author - the author of revision Parameters: date - the datestamp when the revision was committed Parameters: message - an commit log message for revision See Also: SVNLogEntryPath |
compare | static boolean compare(Object o1, Object o2)(Code) | | Compares two objects.
Parameters: o1 - the first object to compare Parameters: o2 - the second object to compare true if either botho1 and o2 are null or o1.equals(o2) returns true |
equals | public boolean equals(Object obj)(Code) | | Compares this object with another one.
Parameters: obj - an object to compare with true if this object is the same as the obj argument |
getAuthor | public String getAuthor()(Code) | | Returns the author of the revision that this object represents.
the author of the revision |
getChangedPaths | public Map getChangedPaths()(Code) | | Gets a map containing all the paths that were changed in the
revision that this object represents.
a map which keys are all the paths that were changed and values are SVNLogEntryPath objects |
getDate | public Date getDate()(Code) | | Gets the datestamp when the revision was committed.
the moment in time when the revision was committed |
getMessage | public String getMessage()(Code) | | Gets the log message attached to the revision.
the commit log message |
getRevision | public long getRevision()(Code) | | Gets the number of the revision that this object represents.
a revision number |
hashCode | public int hashCode()(Code) | | Calculates and returns a hash code for this object.
a hash code |
toString | public String toString()(Code) | | Gives a string representation of this oobject.
a string representing this object |
|
|