| java.lang.Object org.tigris.subversion.javahl.NotifyInformation
NotifyInformation | public class NotifyInformation (Code) | | this class contains all the information passed by the onNotify2 method of
the Notify2 class. This is used notify the SVNClientInterfacce users all
relevant events.
since: 1.2 |
Constructor Summary | |
| NotifyInformation(String path, int action, int kind, String mimeType, Lock lock, String errMsg, int contentState, int propState, int lockState, long revision) This constructor is to be used by the native code. |
Method Summary | |
public int | getAction() return the action, which triggered this event (See NotifyAction). | public int | getContentState() return the state of the content of the item (See NotifyStatus). | public String | getErrMsg() | public int | getKind() return the kind of the item (See NodeKind). | public Lock | getLock() | public int | getLockState() return the state of the lock of the item (See LockStatus). | public String | getMimeType() return the mime type of the item. | public String | getPath() return the path of the item, which is the source of the event. | public int | getPropState() return the state of the properties of the item (See NotifyStatus). | public long | getRevision() return the revision of the item. |
NotifyInformation | NotifyInformation(String path, int action, int kind, String mimeType, Lock lock, String errMsg, int contentState, int propState, int lockState, long revision)(Code) | | This constructor is to be used by the native code. For the parameter
see the matching members
Parameters: path - Parameters: action - Parameters: kind - Parameters: mimeType - Parameters: lock - Parameters: errMsg - Parameters: contentState - Parameters: propState - Parameters: lockState - Parameters: revision - |
getAction | public int getAction()(Code) | | return the action, which triggered this event (See NotifyAction).
|
getContentState | public int getContentState()(Code) | | return the state of the content of the item (See NotifyStatus).
|
getErrMsg | public String getErrMsg()(Code) | | return any error message for the item
|
getKind | public int getKind()(Code) | | return the kind of the item (See NodeKind).
|
getLock | public Lock getLock()(Code) | | return any lock for the item
|
getLockState | public int getLockState()(Code) | | return the state of the lock of the item (See LockStatus).
|
getMimeType | public String getMimeType()(Code) | | return the mime type of the item.
|
getPath | public String getPath()(Code) | | return the path of the item, which is the source of the event.
|
getPropState | public int getPropState()(Code) | | return the state of the properties of the item (See NotifyStatus).
|
getRevision | public long getRevision()(Code) | | return the revision of the item.
|
|
|