Mercurial > jhg
annotate test/com/tmate/hgkit/OutputParser.java @ 64:19e9e220bf68
Convenient commands constitute hi-level API. org.tmatesoft namespace, GPL2 statement
| author | Artem Tikhomirov <tikhomirov.artem@gmail.com> | 
|---|---|
| date | Fri, 21 Jan 2011 05:56:43 +0100 | 
| parents | fac8e7fcc8b0 | 
| children | 
| rev | line source | 
|---|---|
| 
61
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
1 /* | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
2 * Copyright (c) 2011 Artem Tikhomirov | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
3 */ | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
4 package com.tmate.hgkit; | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
5 | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
6 /** | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
7 * | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
8 * @author artem | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
9 */ | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
10 public interface OutputParser { | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
11 | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
12 public void parse(CharSequence seq); | 
| 
 
fac8e7fcc8b0
Simple test framework - capable of parsing Hg cmdline output to compare with Java result
 
Artem Tikhomirov <tikhomirov.artem@gmail.com> 
parents:  
diff
changeset
 | 
13 } | 
