View Javadoc
1   package ca.uhn.hl7v2.testpanel.api;
2   
3   public interface IMessageTransformer<T> {
4   
5   	public T transform(T theInput);
6   	
7   }