Mercurial > hg4j
comparison cmdline/org/tmatesoft/hg/console/Status.java @ 96:ace7042a5ce6
Internals to HgInternals
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Thu, 27 Jan 2011 21:24:37 +0100 |
parents | af1f3b78b918 |
children | a3a2e5deb320 |
comparison
equal
deleted
inserted
replaced
95:bcd31a4c638a | 96:ace7042a5ce6 |
---|---|
26 import org.tmatesoft.hg.core.Nodeid; | 26 import org.tmatesoft.hg.core.Nodeid; |
27 import org.tmatesoft.hg.core.Path; | 27 import org.tmatesoft.hg.core.Path; |
28 import org.tmatesoft.hg.repo.HgDataFile; | 28 import org.tmatesoft.hg.repo.HgDataFile; |
29 import org.tmatesoft.hg.repo.HgRepository; | 29 import org.tmatesoft.hg.repo.HgRepository; |
30 import org.tmatesoft.hg.repo.HgStatusInspector; | 30 import org.tmatesoft.hg.repo.HgStatusInspector; |
31 import org.tmatesoft.hg.repo.Internals; | 31 import org.tmatesoft.hg.repo.HgInternals; |
32 import org.tmatesoft.hg.repo.HgStatusCollector; | 32 import org.tmatesoft.hg.repo.HgStatusCollector; |
33 import org.tmatesoft.hg.repo.HgStatusCollector.Record; | 33 import org.tmatesoft.hg.repo.HgStatusCollector.Record; |
34 import org.tmatesoft.hg.repo.HgWorkingCopyStatusCollector; | 34 import org.tmatesoft.hg.repo.HgWorkingCopyStatusCollector; |
35 | 35 |
36 /** | 36 /** |
80 wcc.walk(3, r); | 80 wcc.walk(3, r); |
81 mardu(r); | 81 mardu(r); |
82 } | 82 } |
83 | 83 |
84 private static void bunchOfTests(HgRepository hgRepo) throws Exception { | 84 private static void bunchOfTests(HgRepository hgRepo) throws Exception { |
85 Internals debug = new Internals(hgRepo); | 85 HgInternals debug = new HgInternals(hgRepo); |
86 debug.dumpDirstate(); | 86 debug.dumpDirstate(); |
87 final StatusDump dump = new StatusDump(); | 87 final StatusDump dump = new StatusDump(); |
88 dump.showIgnored = false; | 88 dump.showIgnored = false; |
89 dump.showClean = false; | 89 dump.showClean = false; |
90 HgStatusCollector sc = new HgStatusCollector(hgRepo); | 90 HgStatusCollector sc = new HgStatusCollector(hgRepo); |