Mercurial > jhg
comparison src/org/tmatesoft/hg/core/HgLogCommand.java @ 237:6e1373b54e9b
Allow access to working copy content through HgDataFile. Give access to repository's working dir
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 10 Jun 2011 04:35:21 +0200 |
parents | 1792b37650f2 |
children | 4c3b9f679412 |
comparison
equal
deleted
inserted
replaced
236:883300108179 | 237:6e1373b54e9b |
---|---|
320 */ | 320 */ |
321 @Deprecated | 321 @Deprecated |
322 public interface FileRevision { | 322 public interface FileRevision { |
323 public abstract Path getPath(); | 323 public abstract Path getPath(); |
324 public abstract Nodeid getRevision(); | 324 public abstract Nodeid getRevision(); |
325 public abstract void putContentTo(ByteChannel sink) throws HgDataStreamException, IOException, CancelledException; | 325 public abstract void putContentTo(ByteChannel sink) throws HgDataStreamException, CancelledException; |
326 } | 326 } |
327 } | 327 } |