Coverage Report - ca.uhn.hl7v2.model.v281.datatype.NULLDT
 
Classes in this File Line Coverage Branch Coverage Complexity
NULLDT
100%
2/2
N/A
1
 
 1  
 /*
 2  
  * Created on Mar 25, 2009
 3  
  */
 4  
 package ca.uhn.hl7v2.model.v281.datatype;
 5  
 
 6  
 import ca.uhn.hl7v2.model.Message;
 7  
 
 8  
 /**
 9  
  * Special datatype used in fields which have been withdrawn from the HL7
 10  
  * specification and should not contain a value.
 11  
  * 
 12  
  * @author <a href="mailto:james.agnew@uhn.on.ca">James Agnew</a>
 13  
  * @version $Revision: 1.1 $ updated on $Date: 2009-03-26 00:39:49 $ by $Author: jamesagnew $
 14  
  */
 15  
 public class NULLDT extends ca.uhn.hl7v2.model.primitive.NULLDT
 16  
 {
 17  
 
 18  
     private static final long serialVersionUID = 1368888406738419721L;
 19  
 
 20  
     /**
 21  
      * Constructor
 22  
      * 
 23  
      * @param theMessage The message
 24  
      */
 25  
     public NULLDT(Message theMessage) {
 26  10
         super(theMessage);
 27  10
     }
 28  
 
 29  
 }