View Javadoc
1   /*
2    * This class is an auto-generated source file for a HAPI
3    * HL7 v2.x standard structure class.
4    *
5    * For more information, visit: http://hl7api.sourceforge.net/
6    * 
7    * The contents of this file are subject to the Mozilla Public License Version 1.1 
8    * (the "License"); you may not use this file except in compliance with the License. 
9    * You may obtain a copy of the License at http://www.mozilla.org/MPL/ 
10   * Software distributed under the License is distributed on an "AS IS" basis, 
11   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the 
12   * specific language governing rights and limitations under the License. 
13   * 
14   * The Original Code is "WVS.java".  Description:
15   * "Composite class WVS"
16   * 
17   * The Initial Developer of the Original Code is University Health Network. Copyright (C) 
18   * 2013.  All Rights Reserved.
19   * 
20   * Contributor(s): ______________________________________. 
21   * 
22   * Alternatively, the contents of this file may be used under the terms of the 
23   * GNU General Public License (the  "GPL"), in which case the provisions of the GPL are 
24   * applicable instead of those above.  If you wish to allow use of your version of this 
25   * file only under the terms of the GPL and not to allow others to use your version 
26   * of this file under the MPL, indicate your decision by deleting  the provisions above 
27   * and replace  them with the notice and other provisions required by the GPL License.  
28   * If you do not delete the provisions above, a recipient may use your version of 
29   * this file under either the MPL or the GPL. 
30   * 
31   */
32  
33  package ca.uhn.hl7v2.model.v27.datatype;
34  
35  import ca.uhn.hl7v2.model.DataTypeException;
36  import ca.uhn.hl7v2.model.Message;
37  import ca.uhn.hl7v2.model.Type;
38  import ca.uhn.hl7v2.model.AbstractComposite;
39  
40  
41  /**
42   * <p>Represents an HL7 WVS (Waveform Source) data type. 
43   * This type consists of the following components:</p>
44   * <ul>
45   * <li>Source One Name (ST)
46   * <li>Source Two Name (ST)
47   * </ul>
48   */
49  @SuppressWarnings("unused")
50  public class WVS extends AbstractComposite {
51  
52      private Type[] data;
53  
54      /** 
55       * Creates a new WVS type
56       */
57      public WVS(Message message) {
58          super(message);
59          init();
60      }
61  
62      private void init() {
63          data = new Type[2];    
64          data[0] = new ST(getMessage());
65          data[1] = new ST(getMessage());
66      }
67  
68  
69      /**
70       * Returns an array containing the data elements.
71       */
72      public Type[] getComponents() { 
73          return this.data; 
74      }
75  
76      /**
77       * Returns an individual data component.
78       *
79       * @param number The component number (0-indexed)
80       * @throws DataTypeException if the given element number is out of range.
81       */
82      public Type getComponent(int number) throws DataTypeException { 
83  
84          try { 
85              return this.data[number]; 
86          } catch (ArrayIndexOutOfBoundsException e) { 
87              throw new DataTypeException("Element " + number + " doesn't exist (Type " + getClass().getName() + " has only " + this.data.length + " components)"); 
88          } 
89      } 
90  
91  
92      /**
93       * Returns Source One Name (component 1).  This is a convenience method that saves you from 
94       * casting and handling an exception.
95       */
96      public ST getSourceOneName() {
97         return getTyped(0, ST.class);
98      }
99  
100     
101     /**
102      * Returns Source One Name (component 1).  This is a convenience method that saves you from 
103      * casting and handling an exception.
104      */
105     public ST getWvs1_SourceOneName() {
106        return getTyped(0, ST.class);
107     }
108 
109 
110     /**
111      * Returns Source Two Name (component 2).  This is a convenience method that saves you from 
112      * casting and handling an exception.
113      */
114     public ST getSourceTwoName() {
115        return getTyped(1, ST.class);
116     }
117 
118     
119     /**
120      * Returns Source Two Name (component 2).  This is a convenience method that saves you from 
121      * casting and handling an exception.
122      */
123     public ST getWvs2_SourceTwoName() {
124        return getTyped(1, ST.class);
125     }
126 
127 
128 
129 }
130