... import org.tmatesoft.svn.core.wc.SVNStatusClient; ... SVNStatusClient statusClient; ... statusClient.doStatus(...., new MyCustomStatusHandler()); ...
... SVNStatus status = statusClient.doStatus(new File(myPath), false); //parsing status info here ...
SVNStatus's methods which names start with getRemote
are relevant for remote status invocations - that is when a doStatus() method of SVNStatusClient is called with the flag remote
set to true.
@version 1.3
@author TMate Software Ltd.
@since 1.2
@see ISVNStatusHandler
@see SVNStatusType
@see Examples
... import org.tmatesoft.svn.core.wc.SVNStatusClient; ... SVNStatusClient statusClient; ... statusClient.doStatus(...., new MyCustomStatusHandler()); ...
... SVNStatus status = statusClient.doStatus(new File(myPath), false); //parsing status info here ...
SVNStatus's methods which names start with getRemote
are relevant for remote status invocations - that is when a doStatus() method of SVNStatusClient is called with the flag remote
set to true.
@version 1.3
@author TMate Software Ltd.
@since 1.2
@see ISVNStatusHandler
@see SVNStatusType
@see Examples
|
|