using NHapi.Base.Parser;
using NHapi.Base;
using NHapi.Base.Log;
using System;
using NHapi.Model.V251.Segment;
using NHapi.Base.Model;
namespace NHapi.Model.V251.Group{
///<summary>
///Represents the RSP_Z88_ORDER_ENCODED Group. A Group is an ordered collection of message
/// segments that can repeat together or be optionally in/excluded together.
/// This Group contains the following elements:
///<ol>
///<li>0: RXE (Pharmacy/Treatment Encoded Order) </li>
///<li>1: RSP_Z88_TIMING_ENCODED (a Group object) </li>
///<li>2: RXR (Pharmacy/Treatment Route) repeating</li>
///<li>3: RXC (Pharmacy/Treatment Component Order) optional repeating</li>
///</ol>
///</summary>
[Serializable]
public class RSP_Z88_ORDER_ENCODED : AbstractGroup {
///<summary>
/// Creates a new RSP_Z88_ORDER_ENCODED Group.
///</summary>
public RSP_Z88_ORDER_ENCODED(IGroup parent, IModelClassFactory factory) : base(parent, factory){
try {
this.add(typeof(RXE), true, false);
this.add(typeof(RSP_Z88_TIMING_ENCODED), true, false);
this.add(typeof(RXR), true, true);
this.add(typeof(RXC), false, true);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating RSP_Z88_ORDER_ENCODED - this is probably a bug in the source code generator.", e);
}
}
///<summary>
/// Returns RXE (Pharmacy/Treatment Encoded Order) - creates it if necessary
///</summary>
public RXE RXE {
get{
RXE ret = null;
try {
ret = (RXE)this.GetStructure("RXE");
} 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 RSP_Z88_TIMING_ENCODED (a Group object) - creates it if necessary
///</summary>
public RSP_Z88_TIMING_ENCODED TIMING_ENCODED {
get{
RSP_Z88_TIMING_ENCODED ret = null;
try {
ret = (RSP_Z88_TIMING_ENCODED)this.GetStructure("TIMING_ENCODED");
} 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 RXR (Pharmacy/Treatment Route) - creates it if necessary
///</summary>
public RXR GetRXR() {
RXR ret = null;
try {
ret = (RXR)this.GetStructure("RXR");
} 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 RXR
/// * (Pharmacy/Treatment Route) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RXR GetRXR(int rep) {
return (RXR)this.GetStructure("RXR", rep);
}
/**
* Returns the number of existing repetitions of RXR
*/
public int RXRRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("RXR").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 first repetition of RXC (Pharmacy/Treatment Component Order) - creates it if necessary
///</summary>
public RXC GetRXC() {
RXC ret = null;
try {
ret = (RXC)this.GetStructure("RXC");
} 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 RXC
/// * (Pharmacy/Treatment Component Order) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public RXC GetRXC(int rep) {
return (RXC)this.GetStructure("RXC", rep);
}
/**
* Returns the number of existing repetitions of RXC
*/
public int RXCRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("RXC").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;
}
}
}
}
|