Package com.zfabrik.svnaccess
Class SvnLogItem
- java.lang.Object
-
- com.zfabrik.svnaccess.SvnLogItem
-
public class SvnLogItem extends java.lang.Object
Encapsulates information of a log item during a SVN LOG command including- svnPath: the path is relative to the SVN root
- revision: path's revision
- node-kind: path's node-kind - see
NodeKind
- action: the operation on the path at the given revision
- svnPath: the path is relative to the SVN root
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SvnLogItem.Action
-
Constructor Summary
Constructors Constructor Description SvnLogItem(java.lang.String path, long revision, SvnLogItem.Action action)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SvnLogItem.Action
getAction()
java.lang.String
getPath()
long
getRevision()
java.lang.String
toString()
-
-
-
Constructor Detail
-
SvnLogItem
public SvnLogItem(java.lang.String path, long revision, SvnLogItem.Action action)
-
-
Method Detail
-
getPath
public java.lang.String getPath()
-
getRevision
public long getRevision()
-
getAction
public SvnLogItem.Action getAction()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-