comparison src/org/tmatesoft/hg/core/RepositoryTreeWalker.java @ 67:64bddc2dcc0e

Tests for manifest cmd
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Fri, 21 Jan 2011 19:21:43 +0100
parents 19e9e220bf68
children 6f1b88693d48
comparison
equal deleted inserted replaced
66:52dc3f4cfc76 67:64bddc2dcc0e
50 } 50 }
51 51
52 public RepositoryTreeWalker range(int rev1, int rev2) { 52 public RepositoryTreeWalker range(int rev1, int rev2) {
53 // if manifest range is different from that of changelog, need conversion utils (external?) 53 // if manifest range is different from that of changelog, need conversion utils (external?)
54 throw HgRepository.notImplemented(); 54 throw HgRepository.notImplemented();
55 }
56
57 public RepositoryTreeWalker revision(int rev) {
58 startRev = endRev = rev;
59 return this;
55 } 60 }
56 61
57 public RepositoryTreeWalker dirs(boolean include) { 62 public RepositoryTreeWalker dirs(boolean include) {
58 // XXX whether directories with directories only are include or not 63 // XXX whether directories with directories only are include or not
59 // now lists only directories with files 64 // now lists only directories with files