Mercurial > jhg
comparison src/com/tmate/hgkit/ll/Revlog.java @ 3:24bb4f365164
Rudimentary log functionality with basic infrastructure is in place
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
|---|---|
| date | Mon, 20 Dec 2010 02:50:36 +0100 |
| parents | 08db726a0fb7 |
| children | e929cecae4e1 |
comparison
equal
deleted
inserted
replaced
| 2:08db726a0fb7 | 3:24bb4f365164 |
|---|---|
| 21 public final HgRepository getRepo() { | 21 public final HgRepository getRepo() { |
| 22 return hgRepo; | 22 return hgRepo; |
| 23 } | 23 } |
| 24 | 24 |
| 25 public interface Inspector { | 25 public interface Inspector { |
| 26 void next(int compressedLen, int actualLen, int baseRevision, int linkRevision, int parent1Revision, int parent2Revision, byte[/*32*/] nodeid, byte[] data); | 26 // XXX boolean retVal to indicate whether to continue? |
| 27 void next(int revisionNumber, int actualLen, int baseRevision, int linkRevision, int parent1Revision, int parent2Revision, byte[/*32*/] nodeid, byte[] data); | |
| 27 } | 28 } |
| 28 } | 29 } |
