Mercurial > hg4j
diff 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 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgRepoFacade.java Tue Apr 09 17:15:30 2013 +0200 +++ b/src/org/tmatesoft/hg/core/HgRepoFacade.java Tue Apr 09 19:25:34 2013 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011-2012 TMate Software Ltd + * Copyright (c) 2011-2013 TMate Software Ltd * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -121,4 +121,10 @@ public HgIncomingCommand createIncomingCommand() { return new HgIncomingCommand(repo); } + + // TODO [1.1] add factory methods for all new commands + + public HgAnnotateCommand createAnnotateCommand() { + return new HgAnnotateCommand(repo); + } }