org.tmatesoft.svn.core.wc.admin
public class SVNAdminPath extends Object
Since: 1.1.1
Version: 1.1.1
Constructor Summary | |
---|---|
SVNAdminPath(String path, String nodeID, long revision)
Constructs a new instance of this class
that is intended for ISVNHistoryHandler.
| |
SVNAdminPath(String path, String nodeID, int treeDepth, boolean isDir)
Constructs a new instance of this class
that is intended for ISVNTreeHandler.
|
Method Summary | |
---|---|
String | getNodeID()
Returns a node revision id.
|
String | getPath()
Returns an absolute path.
|
long | getRevision()
Returns a revision number.
|
int | getTreeDepth()
Returns a tree depth for this path.
|
boolean | isDir()
Says whether path is
a directory or a file. |
Parameters: path an absolute repository path nodeID a node revision id (optional) revision a revision
Parameters: path an absolute repository path nodeID a node revision id (optional) treeDepth the depth at which path
is located in the tree isDir says whether path
is
a directory or a file
Returns: a node revision id
Returns: an absolute path that starts with '/'
Returns: a revision number
"/"
starts
at depth 0. Depth is incremented with every
other segment of path.
This information is relevant only for ISVNTreeHandler.
Returns: a tree depth
path
is
a directory or a file. This information is
relevant only for ISVNTreeHandler.
Returns: true for a directory, false for a file