001    /*
002     * Created on Mar 25, 2009
003     */
004    package ca.uhn.hl7v2.model.primitive;
005    
006    import ca.uhn.hl7v2.model.AbstractPrimitive;
007    import ca.uhn.hl7v2.model.Message;
008    
009    /**
010     * Base class for "NULL" datatype. This is a special case datatype, used in fields which have been withdrawn and are
011     * expected to be empty.
012     * 
013     * @author <a href="mailto:jamesagnew@sourceforge.com">James Agnew</a>
014     * @version $Revision: 1.1 $ updated on $Date: 2009/03/26 00:39:49 $ by $Author: jamesagnew $
015     */
016    public class NULLDT extends AbstractPrimitive
017    {
018    
019        /**
020         * Constructor
021         * 
022         * @param theMessage The message
023         */
024        public NULLDT(Message theMessage) {
025            super(theMessage);
026        }
027    
028        private static final long serialVersionUID = -2676962788248439865L;
029    
030    }