comparison src/org/tmatesoft/hg/repo/HgManifest.java @ 583:47dfa0ec7e35

Effective revlog patching
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Wed, 24 Apr 2013 15:39:53 +0200
parents 88afffd39899
children c895b5556937 2f1cd1c26de5
comparison
equal deleted inserted replaced
582:90df078d6418 583:47dfa0ec7e35
369 public interface Inspector { 369 public interface Inspector {
370 /** 370 /**
371 * Denotes entering specific manifest revision, separate entries are 371 * Denotes entering specific manifest revision, separate entries are
372 * reported with subsequence {@link #next(Nodeid, Path, Flags)} calls. 372 * reported with subsequence {@link #next(Nodeid, Path, Flags)} calls.
373 * 373 *
374 * @param mainfestRevisionIndex local revision index of the inspected revision 374 * @param manifestRevisionIndex local revision index of the inspected revision
375 * @param manifestRevision revision of the manifest we're about to iterate through 375 * @param manifestRevision revision of the manifest we're about to iterate through
376 * @param changelogRevisionIndex local revision index of changelog this manifest points to 376 * @param changelogRevisionIndex local revision index of changelog this manifest points to
377 * @return <code>true</code> to continue iteration, <code>false</code> to stop 377 * @return <code>true</code> to continue iteration, <code>false</code> to stop
378 */ 378 */
379 boolean begin(int mainfestRevisionIndex, Nodeid manifestRevision, int changelogRevisionIndex); 379 boolean begin(int manifestRevisionIndex, Nodeid manifestRevision, int changelogRevisionIndex);
380 380
381 381
382 /** 382 /**
383 * Reports each manifest entry 383 * Reports each manifest entry
384 * 384 *