From: Martin F. <mar...@po...> - 2004-05-21 14:41:17
|
Matias Klein wrote: > Does anyone know if there is a way I can make an ADTProcessor class > that is HL7 version independent? I want this class to be able to > parse a specific message type (i.e. ADT_A04) regardless of whether the > message is v2.3.1, v2.4, or another? Use a Terser instead. msh = Terser.get("MSH"); and Terser.getPrimitive(msh, .........); or something like that. |