NDL.cs :  » Network-Clients » nHapi » NHapi » Model » V251 » Datatype » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Network Clients » nHapi 
nHapi » NHapi » Model » V251 » Datatype » NDL.cs
using System;
using NHapi.Base.Model;
using NHapi.Base.Log;
using NHapi.Base;
using NHapi.Base.Model.Primitive;

namespace NHapi.Model.V251.Datatype{

///<summary>
/// <p>The HL7 NDL (Name with Date and Location) data type.  Consists of the following components: </p><ol>
/// <li>Name (CNN)</li>
/// <li>Start Date/time (TS)</li>
/// <li>End Date/time (TS)</li>
/// <li>Point of Care (IS)</li>
/// <li>Room (IS)</li>
/// <li>Bed (IS)</li>
/// <li>Facility (HD)</li>
/// <li>Location Status (IS)</li>
/// <li>Patient Location Type (IS)</li>
/// <li>Building (IS)</li>
/// <li>Floor (IS)</li>
/// </ol>
///</summary>
[Serializable]
public class NDL : AbstractType, IComposite{
  private IType[] data;

  ///<summary>
  /// Creates a NDL.
  /// <param name="message">The Message to which this Type belongs</param>
  ///</summary>
  public NDL(IMessage message) : this(message, null){}

  ///<summary>
  /// Creates a NDL.
  /// <param name="message">The Message to which this Type belongs</param>
  /// <param name="description">The description of this type</param>
  ///</summary>
  public NDL(IMessage message, string description) : base(message, description){
    data = new IType[11];
    data[0] = new CNN(message,"Name");
    data[1] = new TS(message,"Start Date/time");
    data[2] = new TS(message,"End Date/time");
    data[3] = new IS(message, 302,"Point of Care");
    data[4] = new IS(message, 303,"Room");
    data[5] = new IS(message, 304,"Bed");
    data[6] = new HD(message,"Facility");
    data[7] = new IS(message, 306,"Location Status");
    data[8] = new IS(message, 305,"Patient Location Type");
    data[9] = new IS(message, 307,"Building");
    data[10] = new IS(message, 308,"Floor");
  }

  ///<summary>
  /// Returns an array containing the data elements.
  ///</summary>
  public IType[] Components
  { 
    get{
      return this.data; 
    }
  }

  ///<summary>
  /// Returns an individual data component.
  /// @throws DataTypeException if the given element number is out of range.
  ///<param name="index">The index item to get (zero based)</param>
  ///<returns>The data component (as a type) at the requested number (ordinal)</returns>
  ///</summary>
  public IType this[int index] { 

get{
    try { 
      return this.data[index]; 
    } catch (System.ArgumentOutOfRangeException) { 
      throw new DataTypeException("Element " + index + " doesn't exist in 11 element NDL composite"); 
    } 
  } 
  } 
  ///<summary>
  /// Returns Name (component #0).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public CNN Name {
get{
     CNN ret = null;
     try {
        ret = (CNN)this[0];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Start Date/time (component #1).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public TS StartDateTime {
get{
     TS ret = null;
     try {
        ret = (TS)this[1];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns End Date/time (component #2).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public TS EndDateTime {
get{
     TS ret = null;
     try {
        ret = (TS)this[2];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Point of Care (component #3).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS PointOfCare {
get{
     IS ret = null;
     try {
        ret = (IS)this[3];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Room (component #4).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS Room {
get{
     IS ret = null;
     try {
        ret = (IS)this[4];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Bed (component #5).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS Bed {
get{
     IS ret = null;
     try {
        ret = (IS)this[5];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Facility (component #6).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public HD Facility {
get{
     HD ret = null;
     try {
        ret = (HD)this[6];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Location Status (component #7).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS LocationStatus {
get{
     IS ret = null;
     try {
        ret = (IS)this[7];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Patient Location Type (component #8).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS PatientLocationType {
get{
     IS ret = null;
     try {
        ret = (IS)this[8];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Building (component #9).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS Building {
get{
     IS ret = null;
     try {
        ret = (IS)this[9];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
  ///<summary>
  /// Returns Floor (component #10).  This is a convenience method that saves you from 
  /// casting and handling an exception.
  ///</summary>
  public IS Floor {
get{
     IS ret = null;
     try {
        ret = (IS)this[10];
     } catch (DataTypeException e) {
        HapiLogFactory.getHapiLog(this.GetType()).error("Unexpected problem accessing known data type component - this is a bug.", e);
        throw new System.Exception("An unexpected error ocurred",e);
     }
     return ret;
}

}
}}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.