Mercurial > hg4j
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/com/tmate/hgkit/ll/RevlogStream.java Fri Dec 17 19:05:59 2010 +0100 @@ -0,0 +1,31 @@ +/** + * Copyright (c) 2010 Artem Tikhomirov + */ +package com.tmate.hgkit.ll; + +import java.io.DataInput; + +/** + * ? Single RevlogStream per file per repository with accessor to record access session (e.g. with back/forward operations), + * or numerous RevlogStream with separate representation of the underlaying data (cached, lazy ChunkStream)? + * @author artem + * @see http://mercurial.selenic.com/wiki/Revlog + * @see http://mercurial.selenic.com/wiki/RevlogNG + */ +public class RevlogStream { + + private void detectVersion() { + + } + + /*package*/ DataInput getIndexStream() { + // TODO Auto-generated method stub + return null; + } + + /*package*/ DataInput getDataStream() { + // TODO Auto-generated method stub + return null; + } + +}