Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgLogCommand.java @ 250:9ef71bd26db1
Deprecated and long-time unused HgLogCommand.Handler gone
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 12 Aug 2011 18:59:36 +0200 |
parents | 4c3b9f679412 |
children | 1874d11054e5 |
comparison
equal
deleted
inserted
replaced
249:4c3b9f679412 | 250:9ef71bd26db1 |
---|---|
276 return parentHelper; | 276 return parentHelper; |
277 } | 277 } |
278 | 278 |
279 | 279 |
280 /** | 280 /** |
281 * @deprecated Use {@link HgChangesetHandler} instead. This interface is left temporarily for compatibility. | |
282 */ | |
283 @Deprecated() | |
284 public interface Handler extends HgChangesetHandler { | |
285 } | |
286 | |
287 /** | |
288 * When {@link HgLogCommand} is executed against file, handler passed to {@link HgLogCommand#execute(HgChangesetHandler)} may optionally | 281 * When {@link HgLogCommand} is executed against file, handler passed to {@link HgLogCommand#execute(HgChangesetHandler)} may optionally |
289 * implement this interface to get information about file renames. Method {@link #copy(HgFileRevision, HgFileRevision)} would | 282 * implement this interface to get information about file renames. Method {@link #copy(HgFileRevision, HgFileRevision)} would |
290 * get invoked prior any changeset of the original file (if file history being followed) is reported via {@link #next(HgChangeset)}. | 283 * get invoked prior any changeset of the original file (if file history being followed) is reported via {@link #next(HgChangeset)}. |
291 * | 284 * |
292 * For {@link HgLogCommand#file(Path, boolean)} with renamed file path and follow argument set to false, | 285 * For {@link HgLogCommand#file(Path, boolean)} with renamed file path and follow argument set to false, |