using System;
using NHapi.Base.Log;
using NHapi.Model.V251.Group;
using NHapi.Model.V251.Segment;
using NHapi.Base;
using NHapi.Base.Parser;
using NHapi.Base.Model;
namespace NHapi.Model.V251.Message{
///<summary>
/// Represents a OUL_R22 message structure (see chapter 7.3.7). This structure contains the
/// following elements:
///<ol>
///<li>0: MSH (Message Header) </li>
///<li>1: SFT (Software Segment) optional repeating</li>
///<li>2: NTE (Notes and Comments) optional </li>
///<li>3: OUL_R22_PATIENT (a Group object) optional </li>
///<li>4: OUL_R22_VISIT (a Group object) optional </li>
///<li>5: OUL_R22_SPECIMEN (a Group object) repeating</li>
///<li>6: DSC (Continuation Pointer) optional </li>
///</ol>
///</summary>
[Serializable]
public class OUL_R22 : AbstractMessage {
///<summary>
/// Creates a new OUL_R22 Group with custom IModelClassFactory.
///</summary>
public OUL_R22(IModelClassFactory factory) : base(factory){
init(factory);
}
///<summary>
/// Creates a new OUL_R22 Group with DefaultModelClassFactory.
///</summary>
public OUL_R22() : base(new DefaultModelClassFactory()) {
init(new DefaultModelClassFactory());
}
///<summary>
/// initalize method for OUL_R22. This does the segment setup for the message.
///</summary>
private void init(IModelClassFactory factory) {
try {
this.add(typeof(MSH), true, false);
this.add(typeof(SFT), false, true);
this.add(typeof(NTE), false, false);
this.add(typeof(OUL_R22_PATIENT), false, false);
this.add(typeof(OUL_R22_VISIT), false, false);
this.add(typeof(OUL_R22_SPECIMEN), true, true);
this.add(typeof(DSC), false, false);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating OUL_R22 - this is probably a bug in the source code generator.", e);
}
}
///<summary>
/// Returns MSH (Message Header) - creates it if necessary
///</summary>
public MSH MSH {
get{
MSH ret = null;
try {
ret = (MSH)this.GetStructure("MSH");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns first repetition of SFT (Software Segment) - creates it if necessary
///</summary>
public SFT GetSFT() {
SFT ret = null;
try {
ret = (SFT)this.GetStructure("SFT");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of SFT
/// * (Software Segment) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public SFT GetSFT(int rep) {
return (SFT)this.GetStructure("SFT", rep);
}
/**
* Returns the number of existing repetitions of SFT
*/
public int SFTRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("SFT").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns NTE (Notes and Comments) - creates it if necessary
///</summary>
public NTE NTE {
get{
NTE ret = null;
try {
ret = (NTE)this.GetStructure("NTE");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns OUL_R22_PATIENT (a Group object) - creates it if necessary
///</summary>
public OUL_R22_PATIENT PATIENT {
get{
OUL_R22_PATIENT ret = null;
try {
ret = (OUL_R22_PATIENT)this.GetStructure("PATIENT");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns OUL_R22_VISIT (a Group object) - creates it if necessary
///</summary>
public OUL_R22_VISIT VISIT {
get{
OUL_R22_VISIT ret = null;
try {
ret = (OUL_R22_VISIT)this.GetStructure("VISIT");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
///<summary>
/// Returns first repetition of OUL_R22_SPECIMEN (a Group object) - creates it if necessary
///</summary>
public OUL_R22_SPECIMEN GetSPECIMEN() {
OUL_R22_SPECIMEN ret = null;
try {
ret = (OUL_R22_SPECIMEN)this.GetStructure("SPECIMEN");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
///<summary>
///Returns a specific repetition of OUL_R22_SPECIMEN
/// * (a Group object) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public OUL_R22_SPECIMEN GetSPECIMEN(int rep) {
return (OUL_R22_SPECIMEN)this.GetStructure("SPECIMEN", rep);
}
/**
* Returns the number of existing repetitions of OUL_R22_SPECIMEN
*/
public int SPECIMENRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("SPECIMEN").Length;
} catch (HL7Exception e) {
string message = "Unexpected error accessing data - this is probably a bug in the source code generator.";
HapiLogFactory.getHapiLog(GetType()).error(message, e);
throw new System.Exception(message);
}
return reps;
}
}
///<summary>
/// Returns DSC (Continuation Pointer) - creates it if necessary
///</summary>
public DSC DSC {
get{
DSC ret = null;
try {
ret = (DSC)this.GetStructure("DSC");
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error accessing data - this is probably a bug in the source code generator.", e);
throw new System.Exception("An unexpected error ocurred",e);
}
return ret;
}
}
}
}
|