001    package org.vmdb.hl7;
002    
003    /**
004     * <p><Title:> Patient Visit Additional Information (PV2) Segment Placeholder. </p>
005     * <p>Description: HL7 Network Connectivity For VMDB. </p>
006     * <p>Copyright: Copyright (c) 2002-2003. </p>
007     * <p>Company: Veterinary Medical Database (VMDB). </p>
008     * <p>Use of this process has not yet been implemented in high level code.  See
009     * HL7 Standard Chapter 3 for details.</p>
010     * @author Michael K. Martin
011     * @version 1.0
012     */
013    
014    public class PV2Segment extends HL7Segment {
015       private String sNm = "PV2";
016       private String sRl =
017                   "DT[PL][CE][CE][CE][ST][ST][IS][TS][TS][NM][NM][ST][XCN]" +
018                   "[DT][ID][IS][DT][IS][ID][NM][IS][ID][XON][IS][IS][DT][IS]" +
019                   "[DT][DT][IS][IS][ID][TS][ID][ID][ID][ID]";
020    
021       public PV2Segment() {
022          setName( sNm );
023          setRule( sRl );
024       }
025    
026       public PV2Segment( HL7Message msgParent ) {
027          super( msgParent );
028          setName( sNm );
029          setRule( sRl );
030       }
031    } // End class PV2Segment
032