comparison src/org/tmatesoft/hg/core/RepositoryFacade.java @ 108:0c9804857000

Embellishments
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Sat, 29 Jan 2011 02:31:09 +0100
parents a3a2e5deb320
children c0cc2535462c
comparison
equal deleted inserted replaced
107:7ec89d637f50 108:0c9804857000
43 } 43 }
44 44
45 public LogCommand createLogCommand() { 45 public LogCommand createLogCommand() {
46 return new LogCommand(repo/*, getCommandContext()*/); 46 return new LogCommand(repo/*, getCommandContext()*/);
47 } 47 }
48
48 public StatusCommand createStatusCommand() { 49 public StatusCommand createStatusCommand() {
49 return new StatusCommand(repo/*, getCommandContext()*/); 50 return new StatusCommand(repo/*, getCommandContext()*/);
50 } 51 }
52
53 public CatCommand createCatCommand() {
54 return new CatCommand(repo);
55 }
56
57 public RepositoryTreeWalker createManifestCommand() {
58 return new RepositoryTreeWalker(repo);
59 }
51 } 60 }