View Javadoc
1   package ca.uhn.hl7v2.testpanel.util.compare;
2   
3   public interface IComparisonListener {
4   
5   	void failure(Hl7V2MessageCompare theComparison);
6   	
7   	void success(Hl7V2MessageCompare theComparison);
8   
9   	void progressLog(String theMsgLine);
10  	
11  }