Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgStatusHandler.java @ 454:36fd1fd06492
oth.util.Status renamed to Outcome as the noun is too overloaded, especially in scm
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Wed, 13 Jun 2012 21:07:39 +0200 |
| parents | 31a89587eb04 |
| children |
comparison
equal
deleted
inserted
replaced
| 453:7b883bf03b14 | 454:36fd1fd06492 |
|---|---|
| 16 */ | 16 */ |
| 17 package org.tmatesoft.hg.core; | 17 package org.tmatesoft.hg.core; |
| 18 | 18 |
| 19 import org.tmatesoft.hg.internal.Callback; | 19 import org.tmatesoft.hg.internal.Callback; |
| 20 import org.tmatesoft.hg.util.Path; | 20 import org.tmatesoft.hg.util.Path; |
| 21 import org.tmatesoft.hg.util.Status; | 21 import org.tmatesoft.hg.util.Outcome; |
| 22 | 22 |
| 23 /** | 23 /** |
| 24 * Callback to process {@link HgStatus} objects. | 24 * Callback to process {@link HgStatus} objects. |
| 25 * @author Artem Tikhomirov | 25 * @author Artem Tikhomirov |
| 26 * @author TMate Software Ltd. | 26 * @author TMate Software Ltd. |
| 41 * | 41 * |
| 42 * @param file name of the file that caused the trouble | 42 * @param file name of the file that caused the trouble |
| 43 * @param s error description object | 43 * @param s error description object |
| 44 * @throws HgCallbackTargetException wrapper for any exception user code may produce | 44 * @throws HgCallbackTargetException wrapper for any exception user code may produce |
| 45 */ | 45 */ |
| 46 void error(Path file, Status s) throws HgCallbackTargetException; | 46 void error(Path file, Outcome s) throws HgCallbackTargetException; |
| 47 } | 47 } |
