001 package org.vmdb.hl7;
002
003 /**
004 * <p><Title:> Notes and Comments (NTE) 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 2 for details.</p>
010 * @author Michael K. Martin
011 * @version 1.0
012 */
013
014 public class NTESegment extends HL7Segment {
015 private String sNm = "NTE";
016 private String sRl =
017 "DT[SI][ID][FT]";
018
019 public NTESegment() {
020 setName( sNm );
021 setRule( sRl );
022 }
023
024 public NTESegment( HL7Message msgParent ) {
025 super( msgParent );
026 setName( sNm );
027 setRule( sRl );
028 }
029
030 } // End class NTESegment