Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgChangesetTreeHandler.java @ 383:994b5813a925
Few comments
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Mon, 13 Feb 2012 12:47:24 +0100 |
parents | a2341e761609 |
children | 2747b0723867 |
comparison
equal
deleted
inserted
replaced
382:82336b7c54f4 | 383:994b5813a925 |
---|---|
29 public interface HgChangesetTreeHandler { | 29 public interface HgChangesetTreeHandler { |
30 /** | 30 /** |
31 * @param entry access to various pieces of information about current tree node. Instances might be | 31 * @param entry access to various pieces of information about current tree node. Instances might be |
32 * reused across calls and shall not be kept by client's code | 32 * reused across calls and shall not be kept by client's code |
33 * @throws HgCallbackTargetException.Wrap wrapper object for any exception user code may produce. Wrapped exception would get re-thrown with {@link HgCallbackTargetException} | 33 * @throws HgCallbackTargetException.Wrap wrapper object for any exception user code may produce. Wrapped exception would get re-thrown with {@link HgCallbackTargetException} |
34 * @throws CancelledException FIXME | 34 * @throws CancelledException if execution of the operation was cancelled |
35 */ | 35 */ |
36 public void next(HgChangesetTreeHandler.TreeElement entry) throws HgCallbackTargetException.Wrap, CancelledException; | 36 public void next(HgChangesetTreeHandler.TreeElement entry) throws HgCallbackTargetException.Wrap, CancelledException; |
37 | 37 |
38 interface TreeElement { | 38 interface TreeElement { |
39 /** | 39 /** |