diff src/org/tmatesoft/hg/core/HgOutgoingCommand.java @ 380:9517df1ef7ec

Comments/javadoc
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Thu, 09 Feb 2012 18:57:14 +0100
parents 189dc6dc1c3e
children 7f136a3fa671
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgOutgoingCommand.java	Thu Feb 09 16:47:17 2012 +0100
+++ b/src/org/tmatesoft/hg/core/HgOutgoingCommand.java	Thu Feb 09 18:57:14 2012 +0100
@@ -93,9 +93,9 @@
 	 * Reported changes are from any branch (limits set by {@link #branch(String)} are not taken into account.
 	 * 
 	 * @return list on local nodes known to be missing at remote server 
-	 * @throws HgRemoteConnectionException FIXME
-	 * @throws HgInvalidControlFileException FIXME
-	 * @throws CancelledException FIXME
+	 * @throws HgRemoteConnectionException when failed to communicate with remote repository
+	 * @throws HgInvalidControlFileException if access to revlog index/data entry failed
+	 * @throws CancelledException if execution of the command was cancelled
 	 */
 	public List<Nodeid> executeLite() throws HgRemoteConnectionException, HgInvalidControlFileException, CancelledException {
 		final ProgressSupport ps = getProgressSupport(null);
@@ -111,6 +111,10 @@
 	 * Complete information about outgoing changes
 	 * 
 	 * @param handler delegate to process changes
+	 * @throws HgRemoteConnectionException when failed to communicate with remote repository
+	 * @throws HgInvalidControlFileException if access to revlog index/data entry failed
+	 * @throws HgCallbackTargetException to re-throw exception from the handler
+	 * @throws CancelledException if execution of the command was cancelled
 	 */
 	public void executeFull(final HgChangesetHandler handler) throws HgRemoteConnectionException, HgInvalidControlFileException, HgCallbackTargetException, CancelledException {
 		if (handler == null) {