Mercurial > hg4j
comparison src/com/tmate/hgkit/ll/RevlogStream.java @ 0:dbd663faec1f
Basic changelog parsing
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 17 Dec 2010 19:05:59 +0100 |
parents | |
children | 08db726a0fb7 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:dbd663faec1f |
---|---|
1 /** | |
2 * Copyright (c) 2010 Artem Tikhomirov | |
3 */ | |
4 package com.tmate.hgkit.ll; | |
5 | |
6 import java.io.DataInput; | |
7 | |
8 /** | |
9 * ? Single RevlogStream per file per repository with accessor to record access session (e.g. with back/forward operations), | |
10 * or numerous RevlogStream with separate representation of the underlaying data (cached, lazy ChunkStream)? | |
11 * @author artem | |
12 * @see http://mercurial.selenic.com/wiki/Revlog | |
13 * @see http://mercurial.selenic.com/wiki/RevlogNG | |
14 */ | |
15 public class RevlogStream { | |
16 | |
17 private void detectVersion() { | |
18 | |
19 } | |
20 | |
21 /*package*/ DataInput getIndexStream() { | |
22 // TODO Auto-generated method stub | |
23 return null; | |
24 } | |
25 | |
26 /*package*/ DataInput getDataStream() { | |
27 // TODO Auto-generated method stub | |
28 return null; | |
29 } | |
30 | |
31 } |