comparison src/org/tmatesoft/hg/core/HgRepoFacade.java @ 566:32453f30de07 v1.1m3

Annotate command with command-line example
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Tue, 09 Apr 2013 19:25:34 +0200
parents 12f668401613
children e4ee4bf4c7d0
comparison
equal deleted inserted replaced
565:78a9e26e670d 566:32453f30de07
1 /* 1 /*
2 * Copyright (c) 2011-2012 TMate Software Ltd 2 * Copyright (c) 2011-2013 TMate Software Ltd
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by 5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License. 6 * the Free Software Foundation; version 2 of the License.
7 * 7 *
119 } 119 }
120 120
121 public HgIncomingCommand createIncomingCommand() { 121 public HgIncomingCommand createIncomingCommand() {
122 return new HgIncomingCommand(repo); 122 return new HgIncomingCommand(repo);
123 } 123 }
124
125 // TODO [1.1] add factory methods for all new commands
126
127 public HgAnnotateCommand createAnnotateCommand() {
128 return new HgAnnotateCommand(repo);
129 }
124 } 130 }