1 /*
2 * Created on Mar 25, 2009
3 */
4 package ca.uhn.hl7v2.model.primitive;
5
6 import ca.uhn.hl7v2.model.AbstractPrimitive;
7 import ca.uhn.hl7v2.model.Message;
8
9 /**
10 * Base class for "NULL" datatype. This is a special case datatype, used in fields which have been withdrawn and are
11 * expected to be empty.
12 *
13 * @author <a href="mailto:jamesagnew@sourceforge.com">James Agnew</a>
14 * @version $Revision: 1.1 $ updated on $Date: 2009-03-26 00:39:49 $ by $Author: jamesagnew $
15 */
16 public class NULLDT extends AbstractPrimitive
17 {
18
19 /**
20 * Constructor
21 *
22 * @param theMessage The message
23 */
24 public NULLDT(Message theMessage) {
25 super(theMessage);
26 }
27
28 private static final long serialVersionUID = -2676962788248439865L;
29
30 }