| java.lang.Object org.tigris.subversion.javahl.CommitItem
CommitItem | public class CommitItem (Code) | | this class describes a item which will be commited.
|
Constructor Summary | |
| CommitItem(String p, int nk, int sf, String u, String cu, long r) This constructor will be only called from the jni code. |
nodeKind | int nodeKind(Code) | | the kind node (file or directory)
|
path | String path(Code) | | the pathname of the item to be commit
|
revision | long revision(Code) | | the revision
|
stateFlags | int stateFlags(Code) | | the kind of change to be commited (See CommitItemStateFlages)
|
CommitItem | CommitItem(String p, int nk, int sf, String u, String cu, long r)(Code) | | This constructor will be only called from the jni code.
Parameters: p - path to the commit item Parameters: nk - kind of node (see NodeKind) Parameters: sf - state flags (see StateFlags) Parameters: u - url of the item Parameters: cu - copy source url Parameters: r - revision number |
getCopyUrl | public String getCopyUrl()(Code) | | Returns the source url if the item is copied
source url |
getNodeKind | public int getNodeKind()(Code) | | return the node kind of the commit item
the node kind. Look at the NodeKind class. |
getPath | public String getPath()(Code) | | retrieve the path of the commit item
the path. |
getRevision | public long getRevision()(Code) | | Returns the revision number
revision number |
getStateFlags | public int getStateFlags()(Code) | | return the kind of change for the commit item.
the state flags. Look at the CommitItemStateFlags interface. |
getUrl | public String getUrl()(Code) | | Returns the url of the item
url |
|
|