Mercurial > jhg
comparison src/org/tmatesoft/hg/core/LogCommand.java @ 70:993f6f8e1314
Test for log command
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Sun, 23 Jan 2011 03:28:52 +0100 |
parents | 19e9e220bf68 |
children | 6f1b88693d48 |
comparison
equal
deleted
inserted
replaced
69:5a69397f0f99 | 70:993f6f8e1314 |
---|---|
33 import com.tmate.hgkit.ll.Nodeid; | 33 import com.tmate.hgkit.ll.Nodeid; |
34 import com.tmate.hgkit.ll.StatusCollector; | 34 import com.tmate.hgkit.ll.StatusCollector; |
35 | 35 |
36 /** | 36 /** |
37 * <pre> | 37 * <pre> |
38 * new LogCommand().limit(20).branch("maintenance-2.1").user("me").execute(); | 38 * new LogCommand().limit(20).branch("maintenance-2.1").user("me").execute(new MyHandler()); |
39 * </pre> | 39 * </pre> |
40 * Not thread-safe (each thread has to use own {@link LogCommand} instance). | 40 * Not thread-safe (each thread has to use own {@link LogCommand} instance). |
41 * | 41 * |
42 * @author Artem Tikhomirov | 42 * @author Artem Tikhomirov |
43 * @author TMate Software Ltd. | 43 * @author TMate Software Ltd. |