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 RDS_O13_ENCODING 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: NTE (Notes and Comments) optional repeating</li>
///<li>2: RDS_O13_TIMING_ENCODED (a Group object) repeating</li>
///<li>3: RXR (Pharmacy/Treatment Route) repeating</li>
///<li>4: RXC (Pharmacy/Treatment Component Order) optional repeating</li>
///</ol>
///</summary>
[Serializable]
public class RDS_O13_ENCODING : AbstractGroup {
///<summary>
/// Creates a new RDS_O13_ENCODING Group.
///</summary>
public RDS_O13_ENCODING(IGroup parent, IModelClassFactory factory) : base(parent, factory){
try {
this.add(typeof(RXE), true, false);
this.add(typeof(NTE), false, true);
this.add(typeof(RDS_O13_TIMING_ENCODED), true, true);
this.add(typeof(RXR), true, true);
this.add(typeof(RXC), false, true);
} catch(HL7Exception e) {
HapiLogFactory.getHapiLog(GetType()).error("Unexpected error creating RDS_O13_ENCODING - 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 first repetition of NTE (Notes and Comments) - creates it if necessary
///</summary>
public NTE GetNTE() {
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 a specific repetition of NTE
/// * (Notes and Comments) - creates it if necessary
/// throws HL7Exception if the repetition requested is more than one
/// greater than the number of existing repetitions.
///</summary>
public NTE GetNTE(int rep) {
return (NTE)this.GetStructure("NTE", rep);
}
/**
* Returns the number of existing repetitions of NTE
*/
public int NTERepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("NTE").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 RDS_O13_TIMING_ENCODED (a Group object) - creates it if necessary
///</summary>
public RDS_O13_TIMING_ENCODED GetTIMING_ENCODED() {
RDS_O13_TIMING_ENCODED ret = null;
try {
ret = (RDS_O13_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 a specific repetition of RDS_O13_TIMING_ENCODED
/// * (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 RDS_O13_TIMING_ENCODED GetTIMING_ENCODED(int rep) {
return (RDS_O13_TIMING_ENCODED)this.GetStructure("TIMING_ENCODED", rep);
}
/**
* Returns the number of existing repetitions of RDS_O13_TIMING_ENCODED
*/
public int TIMING_ENCODEDRepetitionsUsed {
get{
int reps = -1;
try {
reps = this.GetAll("TIMING_ENCODED").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 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;
}
}
}
}
|