Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgManifestCommand.java @ 215:41a778e3fd31
Issue 5: Facilities for progress and cancellation. More specific exceptions. Exceptions from callbacks as RuntimeException
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Tue, 17 May 2011 00:56:54 +0200 |
| parents | 1a7a9a20e1f9 |
| children | 373e07cd3991 |
comparison
equal
deleted
inserted
replaced
| 214:4252faa556cd | 215:41a778e3fd31 |
|---|---|
| 37 * Gives access to list of files in each revision (Mercurial manifest information), 'hg manifest' counterpart. | 37 * Gives access to list of files in each revision (Mercurial manifest information), 'hg manifest' counterpart. |
| 38 * | 38 * |
| 39 * @author Artem Tikhomirov | 39 * @author Artem Tikhomirov |
| 40 * @author TMate Software Ltd. | 40 * @author TMate Software Ltd. |
| 41 */ | 41 */ |
| 42 public class HgManifestCommand { | 42 public class HgManifestCommand extends HgAbstractCommand<HgManifestCommand> { |
| 43 | 43 |
| 44 private final HgRepository repo; | 44 private final HgRepository repo; |
| 45 private Path.Matcher matcher; | 45 private Path.Matcher matcher; |
| 46 private int startRev = 0, endRev = TIP; | 46 private int startRev = 0, endRev = TIP; |
| 47 private Handler visitor; | 47 private Handler visitor; |
