From: Ackley, K. A <kei...@ed...> - 2003-11-10 22:45:08
|
The max reps is 1 for the Varies in the constructor for RDT. Here is the constructor: public RDT(Group parent) { super(parent); try { this.add(Varies.class, true, 1, 0, null); } catch (HL7Exception he) { HapiLogFactory.getHapiLog(this.getClass()).error("Can't instantiate " + this.getClass().getName(), he); } } From the HL7 2.4 specification, I would think that it should be 0 for no limit. Am I misreading the specification or is the code wrong? Thanks, Keith |